diff options
Diffstat (limited to 'frontends/ilang/lexer.l')
-rw-r--r-- | frontends/ilang/lexer.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/ilang/lexer.l b/frontends/ilang/lexer.l index fd842b3d..5da8ce67 100644 --- a/frontends/ilang/lexer.l +++ b/frontends/ilang/lexer.l @@ -109,7 +109,7 @@ void update_autoidx(const char *p); } <STRING>. { yymore(); } -"#"[^\n]*\n /* ignore comments */ +"#"[^\n]* /* ignore comments */ [ \t] /* ignore non-newline whitespaces */ [\r\n]+ { return TOK_EOL; } |