[BACK]Return to parse.lex CVS log [TXT][DIR] Up to [local] / src / usr.bin / sudo

Diff for /src/usr.bin/sudo/Attic/parse.lex between version 1.3.6.1 and 1.4

version 1.3.6.1, 2002/01/18 17:20:23 version 1.4, 2002/01/03 03:49:16
Line 69 
Line 69 
 #include <sudo.tab.h>  #include <sudo.tab.h>
   
 #ifndef lint  #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 */  #endif /* lint */
   
 #undef yywrap           /* guard against a yywrap macro */  #undef yywrap           /* guard against a yywrap macro */
Line 157 
Line 157 
 }  }
   
 <GOTCMND>{  <GOTCMND>{
     \\[:\\,= \t#]       {      \\[:\,= \t#]        {
                             LEXTRACE("QUOTEDCHAR ");                              LEXTRACE("QUOTEDCHAR ");
                             fill_args(yytext + 1, 1, sawspace);                              fill_args(yytext + 1, 1, sawspace);
                             sawspace = FALSE;                              sawspace = FALSE;
Line 169 
Line 169 
                             return(COMMAND);                              return(COMMAND);
                         }                       /* end of command line args */                          }                       /* end of command line args */
   
     [^\\:, \t\n]+       {      [^:, \t\n]+         {
                             LEXTRACE("ARG ");                              LEXTRACE("ARG ");
                             fill_args(yytext, yyleng, sawspace);                              fill_args(yytext, yyleng, sawspace);
                             sawspace = FALSE;                              sawspace = FALSE;

Legend:
Removed from v.1.3.6.1  
changed lines
  Added in v.1.4