Re: for loop fixes

2001-03-04 Thread Andreas Mohr
On Sat, Mar 03, 2001 at 07:17:41PM -0800, Francois Gouget wrote: On Sat, 3 Mar 2001, Andreas Mohr wrote: [...] - changed all terminating ";" of isolated for loops to " ;" to indicate the loop's isolation. IMHO, for such loops the following would be much clearer:

Re: for loop fixes

2001-03-04 Thread Andreas Mohr
On Sun, Mar 04, 2001 at 06:21:22AM -0600, David Elliott wrote: Why, what's wrong with a for loop? So far we have these choices: for(init,test,update); /* original */ for(init,test,update) ; /* with space */ init; while(test) { update; } What about simply: for(init,test,update)