From owner-cvs-all@FreeBSD.ORG Fri Feb 11 11:37:15 2005 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8D4416A4CE; Fri, 11 Feb 2005 11:37:15 +0000 (GMT) Received: from critter.freebsd.dk (f170.freebsd.dk [212.242.86.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F7B743D48; Fri, 11 Feb 2005 11:37:15 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.13.1/8.13.1) with ESMTP id j1BBbB1F010138; Fri, 11 Feb 2005 12:37:11 +0100 (CET) (envelope-from phk@critter.freebsd.dk) To: Bruce Evans From: "Poul-Henning Kamp" In-Reply-To: Your message of "Fri, 11 Feb 2005 22:31:36 +1100." <20050211220212.A32327@delplex.bde.org> Date: Fri, 11 Feb 2005 12:37:11 +0100 Message-ID: <10137.1108121831@critter.freebsd.dk> Sender: phk@critter.freebsd.dk cc: rizzo@icir.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: "M. Warner Losh" cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/ed if_ed.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Feb 2005 11:37:16 -0000 In message <20050211220212.A32327@delplex.bde.org>, Bruce Evans writes: >> : while (complicated-expr) >> : ; Look, programming is the art of expressing intent as best as possible. The single semicolon variant is very clear from a compiler point of view, but it is not clear from a human point of view. I always use the continue variant because I feel it expresses intent better for two reasons: The visual impact of a word is much bigger than that of a single lightweight character. Writing "continue" dispells any doubt if I did it intentionally. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence.