Fix bug introduced in unput() removal; want yyless(0) not yyless(1)

This commit is contained in:
Todd C. Miller
2004-10-04 20:15:29 +00:00
parent d7e43093ef
commit 7e36fc441c

View File

@@ -170,7 +170,7 @@ DEFVAR [a-z_]+
[#:\,=\n] {
BEGIN INITIAL;
yyless(1);
yyless(0);
return(COMMAND);
} /* end of command line args */