Now lexical analyzer skips lines starting with #

to kill off remnants of some preprocessor.
This commit is contained in:
sater 1984-07-12 10:18:19 +00:00
parent 3287090f5b
commit 6b9a8d8685

View file

@ -139,6 +139,7 @@ return return(RETURN);
yylval.yy_string = scopy(yytext);
return(tipe);
}
^\#.*$ |
[ \t]* |
\n ;
. return(yytext[0]);