]> granicus.if.org Git - sudo/commitdiff
Fix bug introduced in unput() removal; want yyless(0) not yyless(1)
authorTodd C. Miller <Todd.Miller@courtesan.com>
Mon, 4 Oct 2004 20:15:29 +0000 (20:15 +0000)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Mon, 4 Oct 2004 20:15:29 +0000 (20:15 +0000)
parse.lex

index b385153aae2adc54e315662aee83e790064cde68..a294a9603799dd46402258166255650ea22fe9ef 100644 (file)
--- 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 */