diff options
author | jilles <jilles@FreeBSD.org> | 2010-07-02 21:31:24 +0000 |
---|---|---|
committer | jilles <jilles@FreeBSD.org> | 2010-07-02 21:31:24 +0000 |
commit | 4802d158ef9f040cd3ed205c672e9bd66c031e3d (patch) | |
tree | 366e129bcf8eef556cee6bac907c3964da2ba089 | |
parent | 99b0e7f96be9911eab00cbf26b2f728f18180c19 (diff) | |
download | FreeBSD-src-4802d158ef9f040cd3ed205c672e9bd66c031e3d.zip FreeBSD-src-4802d158ef9f040cd3ed205c672e9bd66c031e3d.tar.gz |
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.
-rw-r--r-- | tools/regression/bin/sh/expansion/arith2.0 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/regression/bin/sh/expansion/arith2.0 b/tools/regression/bin/sh/expansion/arith2.0 index 3e4bb2f..95b48a0 100644 --- a/tools/regression/bin/sh/expansion/arith2.0 +++ b/tools/regression/bin/sh/expansion/arith2.0 @@ -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)) |