[BACK]Return to tokenizer.l CVS log [TXT][DIR] Up to [local] / src / usr.bin / m4

Diff for /src/usr.bin/m4/tokenizer.l between version 1.9 and 1.10

version 1.9, 2017/06/15 13:48:42 version 1.10, 2017/06/17 01:55:16
Line 37 
Line 37 
 dec     [1-9][0-9]*  dec     [1-9][0-9]*
 radix   0[rR][0-9]+:[0-9a-zA-Z]+  radix   0[rR][0-9]+:[0-9a-zA-Z]+
   
   %option noyywrap
   
 %%  %%
 {ws}                    {/* just skip it */}  {ws}                    {/* just skip it */}
 {hex}|{oct}|{dec}       { yylval = number(); return(NUMBER); }  {hex}|{oct}|{dec}       { yylval = number(); return(NUMBER); }

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10