commit bash-20040301 snapshot

This commit is contained in:
Chet Ramey
2011-12-03 12:55:02 -05:00
parent fb65be05d0
commit 5565fb1a35
20 changed files with 4881 additions and 186 deletions
+2 -1
View File
@@ -42,6 +42,7 @@
"||"
"expr ? expr : expr"
"=", "*=", "/=", "%=", "+=", "-=", "<<=", ">>=", "&=", "^=", "|="
, [comma]
(Note that most of these operators have special meaning to bash, and an
entire expression should be quoted, e.g. "a=$a+1" or "a=a+1" to ensure
@@ -765,7 +766,7 @@ exppower ()
register intmax_t val1, val2, c;
val1 = exp1 ();
if (curtok == POWER)
while (curtok == POWER)
{
readtok ();
val2 = exp1 ();