From owner-svn-src-all@FreeBSD.ORG Sun Aug 22 16:55:21 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AEDDA10656C3; Sun, 22 Aug 2010 16:55:21 +0000 (UTC) (envelope-from swell.k@gmail.com) Received: from mail-vw0-f54.google.com (mail-vw0-f54.google.com [209.85.212.54]) by mx1.freebsd.org (Postfix) with ESMTP id 2F29E8FC1C; Sun, 22 Aug 2010 16:55:20 +0000 (UTC) Received: by vws7 with SMTP id 7so5352026vws.13 for ; Sun, 22 Aug 2010 09:55:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:references :date:message-id:user-agent:mime-version:content-type; bh=qlwu5hvrbHYYCGfsWUQlE6vzegiBkPq0ZJsLMs0c048=; b=LdFRXTWsZdb0abZtdyw1OII700nEFWVz3qF+K757OUNo4gP0Itw66+q8B2q2r7POAQ CGIPRC9e0KdlKsXGyIEYN8hwmuvJiINaFr8igEbgDDAYOm0/Bg+pTnW2nhyLEzsdouaM b4+MY9UvX/dttW+KOr/aG77Awb6zyf9jIOR0Q= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:references:date:message-id:user-agent :mime-version:content-type; b=C8eKv5FDoYgUbOPmyxb41K7rmlyX+dBC8aYTdtDWtSPqZHPT05immTp9f0VVlLcXJH yJ2rxMaI7HJP2VrQV8Nc3cDrxyy0Qh7VE/KyXdZDip+qM8PWJ7wDfFKucGYbGRnsayiO QQ28vuh4k+PrlkfHXFeLjgMQGHiniyoevC8Jo= Received: by 10.220.171.211 with SMTP id i19mr2451308vcz.252.1282496120234; Sun, 22 Aug 2010 09:55:20 -0700 (PDT) Received: from localhost (tor.funk.org [193.37.152.204]) by mx.google.com with ESMTPS id m30sm2971570vbr.9.2010.08.22.09.55.15 (version=SSLv3 cipher=RC4-MD5); Sun, 22 Aug 2010 09:55:19 -0700 (PDT) From: Anonymous To: Jilles Tjoelker References: <201008221304.o7MD40lP004588__49386.4383352504$1282482264$gmane$org@svn.freebsd.org> Date: Sun, 22 Aug 2010 20:54:20 +0400 Message-ID: <86fwy6ziyr.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r211621 - head/bin/sh X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2010 16:55:21 -0000 Jilles Tjoelker writes: > Author: jilles > Date: Sun Aug 22 13:04:00 2010 > New Revision: 211621 > URL: http://svn.freebsd.org/changeset/base/211621 > > Log: > sh(1): Add a brief summary of arithmetic expressions. > > Modified: > head/bin/sh/sh.1 > > Modified: head/bin/sh/sh.1 > ============================================================================== > --- head/bin/sh/sh.1 Sun Aug 22 12:03:31 2010 (r211620) > +++ head/bin/sh/sh.1 Sun Aug 22 13:04:00 2010 (r211621) [...] > +.It Short-circuit evaluation > +The > +.Li && > +and > +.Li || > +operators always evaluate both sides. > +This is a bug. > +.El > .Pp Why not put it in the BUGS section then?