static union node *pipeline(void);
static union node *parse_command(void);
static void parseheredoc(void);
-static char peektoken(void);
+static char nexttoken_ends_list(void);
static int readtoken(void);
static union node *
int tok;
checkkwd = CHKNL | CHKKWD | CHKALIAS;
- if (nlflag == 2 && peektoken())
+ if (nlflag == 2 && nexttoken_ends_list())
return NULL;
n1 = NULL;
for (;;) {
tokpushback = 1;
}
checkkwd = CHKNL | CHKKWD | CHKALIAS;
- if (peektoken())
+ if (nexttoken_ends_list()) {
+ /* Testcase: "<<EOF; then <W".
+ * It used to segfault w/o this check:
+ */
+ if (heredoclist) {
+ raise_error_unexpected_syntax(-1);
+ }
return n1;
+ }
break;
case TEOF:
if (heredoclist)
}
static char
-peektoken(void)
+nexttoken_ends_list(void)
{
int t;