From: Todd C. Miller Date: Mon, 4 Oct 2004 20:15:29 +0000 (+0000) Subject: Fix bug introduced in unput() removal; want yyless(0) not yyless(1) X-Git-Tag: SUDO_1_7_0~899 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7e36fc441cd1b2630a398a8c55c827d96be825d8;p=sudo Fix bug introduced in unput() removal; want yyless(0) not yyless(1) --- diff --git a/parse.lex b/parse.lex index b385153aa..a294a9603 100644 --- a/parse.lex +++ b/parse.lex @@ -170,7 +170,7 @@ DEFVAR [a-z_]+ [#:\,=\n] { BEGIN INITIAL; - yyless(1); + yyless(0); return(COMMAND); } /* end of command line args */