On Tue, Aug 24, 2004 at 04:15:32PM +0900, TAKAHASHI Tamotsu wrote: > I think you can rewrite it to > > ----------- > case OP_EXIT: > ... > f[0]=' '; /* anything will do */ > goto bail; > ----------- Sure, this has a bug, as usual. :) - f[0]=' '; /* anything will do */ + if (i == OP_EXIT) f[0]=' '; -- tamo