diff options
author | Gerrit Pape <pape@smarden.org> | 2008-05-07 11:15:52 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2008-05-07 11:15:52 +0800 |
commit | 065c7bfc0cb928e9f51ee9597d41d5604acff68a (patch) | |
tree | 555a715f3282eab32703d78da0467aade765656d /ChangeLog | |
parent | [SHELL] Added gitignore (diff) | |
download | dash-065c7bfc0cb928e9f51ee9597d41d5604acff68a.tar.gz dash-065c7bfc0cb928e9f51ee9597d41d5604acff68a.zip |
[ARITH] Fixed lexical error on & and |
The parser used to skip a byte when parsing the & and | operators, testcase: $ dash -c 'echo $((7&1))' $ dash -c 'echo $((7& 1))' $ dash -c 'echo $((7&11))' Signed-off-by: Gerrit Pape <pape@smarden.org> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to '')
-rw-r--r-- | ChangeLog | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index c277720..2f65e03 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-05-07 Gerrit Pape <pape@smarden.org> + + * Fixed lexical error in arithmetic expansion of & and |. + 2008-05-03 Dan McGee <dpmcgee@gmail.com> * Fixed klibc/klcc build problems. |