=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/sudo/Attic/parse.lex,v retrieving revision 1.3.6.1 retrieving revision 1.4 diff -u -r1.3.6.1 -r1.4 --- src/usr.bin/sudo/Attic/parse.lex 2002/01/18 17:20:23 1.3.6.1 +++ src/usr.bin/sudo/Attic/parse.lex 2002/01/03 03:49:16 1.4 @@ -69,7 +69,7 @@ #include #ifndef lint -static const char rcsid[] = "$Sudo: parse.lex,v 1.118 2002/01/15 18:16:31 millert Exp $"; +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 */ @@ -157,7 +157,7 @@ } { - \\[:\\,= \t#] { + \\[:\,= \t#] { LEXTRACE("QUOTEDCHAR "); fill_args(yytext + 1, 1, sawspace); sawspace = FALSE; @@ -169,7 +169,7 @@ return(COMMAND); } /* end of command line args */ - [^\\:, \t\n]+ { + [^:, \t\n]+ { LEXTRACE("ARG "); fill_args(yytext, yyleng, sawspace); sawspace = FALSE;