From owner-freebsd-current Wed May 29 17:40:18 2002 Delivered-To: freebsd-current@freebsd.org Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by hub.freebsd.org (Postfix) with ESMTP id ADC5137B407; Wed, 29 May 2002 17:40:08 -0700 (PDT) Received: from InterJet.elischer.org ([12.232.206.8]) by rwcrmhc51.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020530004008.VHAT11426.rwcrmhc51.attbi.com@InterJet.elischer.org>; Thu, 30 May 2002 00:40:08 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id RAA19909; Wed, 29 May 2002 17:39:12 -0700 (PDT) Date: Wed, 29 May 2002 17:39:11 -0700 (PDT) From: Julian Elischer To: Peter Wemm Cc: John Baldwin , FreeBSD current users Subject: Re: Seeking OK to commit KSE MIII In-Reply-To: <20020530001430.DC4D0380A@overcee.wemm.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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