summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--compil.lex2
1 files changed, 1 insertions, 1 deletions
diff --git a/compil.lex b/compil.lex
index 36db5c5..20f9758 100644
--- a/compil.lex
+++ b/compil.lex
@@ -101,7 +101,7 @@
BEGIN(WWH);
}
-<WWH>"height=\""[[:digit:]]+"\"/>" {
+<WWH>"height=\""[[:digit:]]+"\"/>\n" {
int d = atoi(yytext + 8);
windows[current_ptr].h = d;
BEGIN(I);