diff options
Diffstat (limited to 'lisp.l')
| -rw-r--r-- | lisp.l | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -7,8 +7,9 @@ int tcnt = 0; %} %% -[[:space:]]+ { /* ignore whitespace */ } -";"[^\n]* { /* ignore comment */ } +[[:space:]&&[^\n]]+ { /* ignore whitespace */ } +";"[^\n]* { /* ignore comment */ } +\n { return NLINE; } "(" { return LPAREN; } ")" { return RPAREN; } "\." { return DOT; } |
