From 0dd72f291afd89ed89112efbdbb04f53da4f084d Mon Sep 17 00:00:00 2001 From: Pixel Date: Mon, 22 Jul 2013 16:05:40 -0700 Subject: Fixing extra line ending on blocks - by Bahabulle --- compil.lex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compil.lex b/compil.lex index 36db5c5..20f9758 100644 --- a/compil.lex +++ b/compil.lex @@ -101,7 +101,7 @@ BEGIN(WWH); } -"height=\""[[:digit:]]+"\"/>" { +"height=\""[[:digit:]]+"\"/>\n" { int d = atoi(yytext + 8); windows[current_ptr].h = d; BEGIN(I); -- cgit v1.2.3