Date: Wed, 29 May 2002 17:39:11 -0700 (PDT) From: Julian Elischer <julian@elischer.org> To: Peter Wemm <peter@wemm.org> Cc: John Baldwin <jhb@FreeBSD.ORG>, FreeBSD current users <current@FreeBSD.ORG> Subject: Re: Seeking OK to commit KSE MIII Message-ID: <Pine.BSF.4.21.0205291735080.12315-100000@InterJet.elischer.org> In-Reply-To: <20020530001430.DC4D0380A@overcee.wemm.org>
next in thread | previous in thread | raw e-mail | index | archive | help
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 majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.21.0205291735080.12315-100000>