Doug Rabson <d...@nlsystems.com> wrote: >On Fri, 29 Jan 1999, Sheldon Hearn wrote: >> >> The reason I'm interested in this (now tiresome) thread is that I'd much >> rather have to read >> >> /* >> * Bail out if the time left to next transaction is less than >> * the duration of the previous transaction. >> */ >> if (t % u - n % u < d % u) { >> >> than >> >> if (((t % u) - (n % u)) < (d % u)) { > >This is a strawman. The original expression is perfectly fine (by my >rules). One could make a case for: > > if ((t % u) - (n % u) < d % u)
Am I a heretic for suggesting this? if (t%u - n%u < d%u) Grouping without brackets! Tony. -- f.a.n.finch d...@dotat.at f...@demon.net To Unsubscribe: send mail to majord...@freebsd.org with "unsubscribe freebsd-current" in the body of the message