From owner-svn-src-stable@FreeBSD.ORG  Fri Sep  3 21:59:12 2010
Return-Path: <owner-svn-src-stable@FreeBSD.ORG>
Delivered-To: svn-src-stable@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 61FAF10656CB;
	Fri,  3 Sep 2010 21:59:12 +0000 (UTC)
	(envelope-from jilles@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id 5053F8FC1A;
	Fri,  3 Sep 2010 21:59:12 +0000 (UTC)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o83LxCTQ065436;
	Fri, 3 Sep 2010 21:59:12 GMT (envelope-from jilles@svn.freebsd.org)
Received: (from jilles@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id o83LxCpt065434;
	Fri, 3 Sep 2010 21:59:12 GMT (envelope-from jilles@svn.freebsd.org)
Message-Id: <201009032159.o83LxCpt065434@svn.freebsd.org>
From: Jilles Tjoelker <jilles@FreeBSD.org>
Date: Fri, 3 Sep 2010 21:59:12 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
X-SVN-Group: stable-8
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r212189 - stable/8/tools/regression/bin/sh/expansion
X-BeenThere: svn-src-stable@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: SVN commit messages for all the -stable branches of the src tree
	<svn-src-stable.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/svn-src-stable>, 
	<mailto:svn-src-stable-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/svn-src-stable>
List-Post: <mailto:svn-src-stable@freebsd.org>
List-Help: <mailto:svn-src-stable-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/svn-src-stable>,
	<mailto:svn-src-stable-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 03 Sep 2010 21:59:12 -0000

Author: jilles
Date: Fri Sep  3 21:59:12 2010
New Revision: 212189
URL: http://svn.freebsd.org/changeset/base/212189

Log:
  MFC r209652: sh: Remove comment that the comma operator is missing
  in arithmetic expansion.
  
  The comma operator is not listed in POSIX.1-2008 XCU 1.1.2.1 Arithmetic
  Precision and Operations (referenced by XCU 2.6.4 Arithmetic Expansion) and
  is therefore not required.

Modified:
  stable/8/tools/regression/bin/sh/expansion/arith2.0
Directory Properties:
  stable/8/tools/regression/bin/sh/   (props changed)

Modified: stable/8/tools/regression/bin/sh/expansion/arith2.0
==============================================================================
--- stable/8/tools/regression/bin/sh/expansion/arith2.0	Fri Sep  3 21:51:38 2010	(r212188)
+++ stable/8/tools/regression/bin/sh/expansion/arith2.0	Fri Sep  3 21:59:12 2010	(r212189)
@@ -72,6 +72,6 @@ check "v" 10
 check "(v=42)&&(v|=32)==42" 1
 check "v" 42
 
-# missing: ternary, comma
+# missing: ternary
 
 exit $((failures != 0))