From owner-cvs-all@FreeBSD.ORG Tue Mar 30 11:14:04 2004 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 B393916A4CF for ; Tue, 30 Mar 2004 11:14:04 -0800 (PST) Received: from root.org (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 81FCF43D48 for ; Tue, 30 Mar 2004 11:14:04 -0800 (PST) (envelope-from nate@root.org) Received: (qmail 81985 invoked by uid 1000); 30 Mar 2004 19:14:05 -0000 Date: Tue, 30 Mar 2004 11:14:05 -0800 (PST) From: Nate Lawson To: Tony Finch In-Reply-To: Message-ID: <20040330111248.Q81785@root.org> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern subr_bus.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: Tue, 30 Mar 2004 19:14:04 -0000 On Tue, 30 Mar 2004, Tony Finch wrote: > On Mon, 29 Mar 2004, Nate Lawson wrote: > > > > Parens only indicate associativity, they cannot override precedence. > > They can do both. > > a + (b + c) // overriding associativity > a * (b + c) // overriding precedence > > They cannot control order of evaluation. Correct. I meant to say that but was a bit addled from returning from a trip. Thanks. Things like this are meaningless: *(ptr++) -Nate