diff options
Diffstat (limited to 'bin/sh/parser.c')
-rw-r--r-- | bin/sh/parser.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/bin/sh/parser.c b/bin/sh/parser.c index 29ccd83..64c97aa 100644 --- a/bin/sh/parser.c +++ b/bin/sh/parser.c @@ -1223,10 +1223,7 @@ readtoken1(int firstc, char const *initialsyntax, char *eofmark, int striptabs) if (eofmark != NULL && newvarnest == 0) USTPUTC(c, out); else { - if (state[level].category == TSTATE_ARITH) - state[level].syntax = ARISYNTAX; - else - state[level].syntax = BASESYNTAX; + state[level].syntax = BASESYNTAX; quotef++; } break; |