Andy Lester wrote: > - for (t = s; !isSPACE(*t); t++) ; > + for (t = s; !isSPACE(*t); t++) > + NOOP; I think I tend to find this kind of changes overkill, almost to ugly. In my code, I usually put a lone ; on the next line. Isn't this sufficient ?Thread Previous | Thread Next