On Wed, 29 May 2002, Peter Wemm wrote:
> 
> ie: it is ok to change this:
> if (foo) {
>       fumble();
>       futz();
> } else
>       bah;
> 
> into
> } else {
>       bah;
> }


 In this case it's moot because I already did it as a separate commit
but it was changing:

if (foo) {
        mumble();
        futz();
} else
        bah;

to

if (blah_foo()) {
        mumble();
        futz();
} else {
        bah();
}

So it wasn't really just a style change. there was a logic change too.

anyhow.. enough already!
 :-)



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to