summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/glsl/glcpp/glcpp-lex.l1
-rw-r--r--src/glsl/glsl_lexer.lpp2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/glsl/glcpp/glcpp-lex.l b/src/glsl/glcpp/glcpp-lex.l
index 6a91b09954..53e85556c1 100644
--- a/src/glsl/glcpp/glcpp-lex.l
+++ b/src/glsl/glcpp/glcpp-lex.l
@@ -36,6 +36,7 @@
yylloc->first_line = yylineno; \
yycolumn += yyleng; \
} while(0);
+#define YY_USER_INIT yylineno = 0; yycolumn = 0;
%}
%option bison-bridge bison-locations reentrant noyywrap
diff --git a/src/glsl/glsl_lexer.lpp b/src/glsl/glsl_lexer.lpp
index ddaa19db72..6c1000876e 100644
--- a/src/glsl/glsl_lexer.lpp
+++ b/src/glsl/glsl_lexer.lpp
@@ -34,6 +34,8 @@
yycolumn += yyleng; \
} while(0);
+#define YY_USER_INIT yylineno = 0; yycolumn = 0;
+
%}
%option bison-bridge bison-locations reentrant noyywrap