summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2013-07-22 16:05:40 -0700
committerPixel <pixel@nobis-crew.org>2013-07-22 16:05:40 -0700
commit0dd72f291afd89ed89112efbdbb04f53da4f084d (patch)
treef2395292a138a5ed1647562fec20b1e2a0ee41e1
parent804886ec07e47a83d22b2471db15f8045e342d18 (diff)
Fixing extra line ending on blocks - by BahabulleHEADmaster
-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);