From 62f62ca3b3a206bb52de79b8fc7890ac8c62c7fc Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Wed, 7 Apr 2010 13:43:52 -0700 Subject: [PATCH] Partially fix comment handling in preprocessor directives. Multi-line /* */ comments are still broken. I think this will wait to be fixed until we have a real preprocessor. --- glsl_lexer.lpp | 1 + 1 file changed, 1 insertion(+) diff --git a/glsl_lexer.lpp b/glsl_lexer.lpp index 8f3f121..672ff39 100644 --- a/glsl_lexer.lpp +++ b/glsl_lexer.lpp @@ -61,6 +61,7 @@ ^[ \t]*#[ \t]*extension { BEGIN PP; return EXTENSION; } ^[ \t]*#[ \t]*line { BEGIN PP; return LINE; } ^[ \t]*#[ \t]*pragma { BEGIN PP; return PRAGMA; } +\/\/[^\n]* { } : return COLON; [_a-zA-Z][_a-zA-Z0-9]* { yylval->identifier = strdup(yytext); -- 2.7.4