diff options
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c index 17121aa9b..3339666b9 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -10913,7 +10913,7 @@ parse_command(void) | |||
10913 | n1 = stzalloc(sizeof(struct nfor)); | 10913 | n1 = stzalloc(sizeof(struct nfor)); |
10914 | n1->type = NFOR; | 10914 | n1->type = NFOR; |
10915 | n1->nfor.var = wordtext; | 10915 | n1->nfor.var = wordtext; |
10916 | checkkwd = CHKKWD | CHKALIAS; | 10916 | checkkwd = CHKNL | CHKKWD | CHKALIAS; |
10917 | if (readtoken() == TIN) { | 10917 | if (readtoken() == TIN) { |
10918 | app = ≈ | 10918 | app = ≈ |
10919 | while (readtoken() == TWORD) { | 10919 | while (readtoken() == TWORD) { |
@@ -10940,7 +10940,7 @@ parse_command(void) | |||
10940 | * Newline or semicolon here is optional (but note | 10940 | * Newline or semicolon here is optional (but note |
10941 | * that the original Bourne shell only allowed NL). | 10941 | * that the original Bourne shell only allowed NL). |
10942 | */ | 10942 | */ |
10943 | if (lasttoken != TNL && lasttoken != TSEMI) | 10943 | if (lasttoken != TSEMI) |
10944 | tokpushback = 1; | 10944 | tokpushback = 1; |
10945 | } | 10945 | } |
10946 | checkkwd = CHKNL | CHKKWD | CHKALIAS; | 10946 | checkkwd = CHKNL | CHKKWD | CHKALIAS; |