=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/sudo/Attic/parse.lex,v retrieving revision 1.1 retrieving revision 1.2 diff -c -r1.1 -r1.2 *** src/usr.bin/sudo/Attic/parse.lex 1999/11/18 16:29:01 1.1 --- src/usr.bin/sudo/Attic/parse.lex 1999/12/10 06:45:11 1.2 *************** *** 62,68 **** #include "sudo.tab.h" #ifndef lint ! static const char rcsid[] = "$Sudo: parse.lex,v 1.109 1999/11/09 20:06:52 millert Exp $"; #endif /* lint */ #undef yywrap /* guard against a yywrap macro */ --- 62,68 ---- #include "sudo.tab.h" #ifndef lint ! static const char rcsid[] = "$Sudo: parse.lex,v 1.110 1999/12/06 00:05:53 millert Exp $"; #endif /* lint */ #undef yywrap /* guard against a yywrap macro */ *************** *** 138,143 **** --- 138,144 ---- \n { ++sudolineno; LEXTRACE("\n"); + BEGIN INITIAL; return(COMMENT); } /* return newline */ *************** *** 257,263 **** } } ! {WORD} { LEXTRACE("WORD(3) "); fill(yytext, yyleng); return(WORD); --- 258,264 ---- } } ! {WORD} { LEXTRACE("WORD(3) "); fill(yytext, yyleng); return(WORD); *************** *** 296,301 **** --- 297,303 ---- } if (*yytext == 'R') { LEXTRACE("RUNASALIAS "); + BEGIN GOTRUNAS; return(RUNASALIAS); } }