parser/lexical.c, #1/10, this condition is allways true

This commit is contained in:
rlar 2016-03-11 22:36:40 +01:00
parent 521db88eff
commit a2af93685f
1 changed files with 1 additions and 1 deletions

View File

@ -328,7 +328,7 @@ nloop:
goto ldefault;
case '&': /* va: $&name is one word */
if ((i >= 1) && (buf[i-1] == '$') && (c == '&')) {
if ((i >= 1) && (buf[i-1] == '$')) {
buf[i++] = (char) c;
break;
}