From b6dda50adc1769e8d48072dde63f534557e26bf7 Mon Sep 17 00:00:00 2001 From: Jilles Tjoelker Date: Thu, 25 Jul 2013 20:50:35 +0000 Subject: [PATCH] sh: Remove an incorrect comment. --- bin/sh/parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/sh/parser.c b/bin/sh/parser.c index 282cbaeff661..f079c69c31df 100644 --- a/bin/sh/parser.c +++ b/bin/sh/parser.c @@ -98,7 +98,7 @@ static int needprompt; /* true if interactive and at start of line */ static int lasttoken; /* last token read */ int tokpushback; /* last token pushed back */ static char *wordtext; /* text of last word returned by readtoken */ -static int checkkwd; /* 1 == check for kwds, 2 == also eat newlines */ +static int checkkwd; static struct nodelist *backquotelist; static union node *redirnode; static struct heredoc *heredoc;