1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

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.
This commit is contained in:
Jilles Tjoelker 2010-07-02 21:31:24 +00:00
parent cdaba1f2be
commit 778c4480f4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=209652

View File

@ -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))