Increment line number for continuation lines.
diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c
index 38f76ed..97eda75 100644
--- a/Parser/tokenizer.c
+++ b/Parser/tokenizer.c
@@ -466,6 +466,7 @@
 			tok->done = E_TOKEN;
 			return ERRORTOKEN;
 		}
+		tok->lineno++;
 		goto again; /* Read next line */
 	}