diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/pycode.l | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pycode.l b/src/pycode.l index ef6c780..3935107 100644 --- a/src/pycode.l +++ b/src/pycode.l @@ -1142,6 +1142,10 @@ TARGET ({IDENTIFIER}|"("{TARGET_LIST}")"|"["{TARGET_LIST}"]"|{ATTRIBUT codify(yytext); } + "\n" { + codifyLines(yytext); + } + ":" { codify(yytext); |