=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/sudo/Attic/parse.lex,v retrieving revision 1.4 retrieving revision 1.5 diff -c -r1.4 -r1.5 *** src/usr.bin/sudo/Attic/parse.lex 2002/01/03 03:49:16 1.4 --- src/usr.bin/sudo/Attic/parse.lex 2002/01/16 18:09:13 1.5 *************** *** 69,75 **** #include #ifndef lint ! static const char rcsid[] = "$Sudo: parse.lex,v 1.117 2001/12/30 22:12:06 millert Exp $"; #endif /* lint */ #undef yywrap /* guard against a yywrap macro */ --- 69,75 ---- #include #ifndef lint ! static const char rcsid[] = "$Sudo: parse.lex,v 1.118 2002/01/15 18:16:31 millert Exp $"; #endif /* lint */ #undef yywrap /* guard against a yywrap macro */ *************** *** 157,163 **** } { ! \\[:\,= \t#] { LEXTRACE("QUOTEDCHAR "); fill_args(yytext + 1, 1, sawspace); sawspace = FALSE; --- 157,163 ---- } { ! \\[:\\,= \t#] { LEXTRACE("QUOTEDCHAR "); fill_args(yytext + 1, 1, sawspace); sawspace = FALSE; *************** *** 169,175 **** return(COMMAND); } /* end of command line args */ ! [^:, \t\n]+ { LEXTRACE("ARG "); fill_args(yytext, yyleng, sawspace); sawspace = FALSE; --- 169,175 ---- return(COMMAND); } /* end of command line args */ ! [^\\:, \t\n]+ { LEXTRACE("ARG "); fill_args(yytext, yyleng, sawspace); sawspace = FALSE;