From 8ac8e13b7521849a7c45ac9c996d6cdcee405141 Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Wed, 23 May 2012 07:20:17 +0000 Subject: [PATCH] test: some grammar tweaks. --- test/sandbox/lex/lolfx.l | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/sandbox/lex/lolfx.l b/test/sandbox/lex/lolfx.l index 8e1164ae..1398594f 100644 --- a/test/sandbox/lex/lolfx.l +++ b/test/sandbox/lex/lolfx.l @@ -44,7 +44,8 @@ */ "//" { BEGIN(CPP_COMMENT); } -.*\n { BEGIN(INITIAL); } +\n { BEGIN(INITIAL); } +.* { } %%