From 6445bb6915fbd2d6f2c8d622e01365a06939475a Mon Sep 17 00:00:00 2001 From: steve Date: Fri, 8 Nov 2002 00:04:16 +0000 Subject: [PATCH] Handle comments in suppressed code. --- ivlpp/lexor.lex | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ivlpp/lexor.lex b/ivlpp/lexor.lex index 53e6561d2..63c5db8b8 100644 --- a/ivlpp/lexor.lex +++ b/ivlpp/lexor.lex @@ -19,7 +19,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #if !defined(WINNT) && !defined(macintosh) -#ident "$Id: lexor.lex,v 1.35 2002/09/25 02:23:08 steve Exp $" +#ident "$Id: lexor.lex,v 1.36 2002/11/08 00:04:16 steve Exp $" #endif # include "config.h" @@ -239,6 +239,7 @@ W [ \t\b\f]+ `else { BEGIN(IFDEF_TRUE); } `else { } +"//".* { } . { } \n { istack->lineno += 1; fputc('\n', yyout); }