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

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