From 2eeeba3225dbf63eb773af59fabd2fff66ab9c6b Mon Sep 17 00:00:00 2001 From: sater Date: Thu, 12 Jul 1984 10:18:19 +0000 Subject: [PATCH] Now lexical analyzer skips lines starting with # to kill off remnants of some preprocessor. --- util/cgg/bootlex.l | 1 + 1 file changed, 1 insertion(+) diff --git a/util/cgg/bootlex.l b/util/cgg/bootlex.l index 67f87139..9332c9a1 100644 --- a/util/cgg/bootlex.l +++ b/util/cgg/bootlex.l @@ -139,6 +139,7 @@ return return(RETURN); yylval.yy_string = scopy(yytext); return(tipe); } +^\#.*$ | [ \t]* | \n ; . return(yytext[0]);