summaryrefslogtreecommitdiff
path: root/bin/sh/parser.c
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1994-08-24 05:48:26 +0000
committermycroft <mycroft@NetBSD.org>1994-08-24 05:48:26 +0000
commit08a673005488bb4e27b34b5fcedb7f5de2e28ffe (patch)
tree68bf87e12d46ae5363ada8c48fc7259646a91d86 /bin/sh/parser.c
parent0797399a73deba772478586d3696caf3752c6ff6 (diff)
Fix a core dump and another parse error related to null commands.
Diffstat (limited to 'bin/sh/parser.c')
-rw-r--r--bin/sh/parser.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/sh/parser.c b/bin/sh/parser.c
index b3fef496cb0..03e9086929a 100644
--- a/bin/sh/parser.c
+++ b/bin/sh/parser.c
@@ -36,7 +36,7 @@
#ifndef lint
/*static char sccsid[] = "from: @(#)parser.c 8.1 (Berkeley) 5/31/93";*/
-static char *rcsid = "$Id: parser.c,v 1.19 1994/07/07 20:53:32 mycroft Exp $";
+static char *rcsid = "$Id: parser.c,v 1.20 1994/08/24 05:48:28 mycroft Exp $";
#endif /* not lint */
#include "shell.h"
@@ -459,6 +459,7 @@ TRACE(("expecting DO got %s %s\n", tokname[got], got == TWORD ? wordtext : ""));
if (!redir)
synexpect(-1);
case TNL:
+ case TEOF:
case TWORD:
case TRP:
tokpushback++;