fixed a bug in parsing an expression like "1++b" in awk/parse.c

This commit is contained in:
2011-08-13 08:16:05 +00:00
parent f843a6e003
commit 55182c4232
2 changed files with 15 additions and 1 deletions

View File

@ -8,5 +8,7 @@ BEGIN {
print a;
print b;
print c;
print 99++c;
}