summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--glcpp-lex.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/glcpp-lex.l b/glcpp-lex.l
index 7bc5fab76d..2aec46a2ed 100644
--- a/glcpp-lex.l
+++ b/glcpp-lex.l
@@ -53,7 +53,7 @@ HEXADECIMAL_INTEGER 0[xX][0-9a-fA-F]+[uU]?
}
/* Multi-line comments */
-[/][*]([^*]*[*]+[^*/])*[^*]*[*]+[/] {
+"/*"([^*]*[*]+[^*/])*[^*]*[*]+"/" {
if (yyextra->space_tokens)
return SPACE;
}