Whoops, forgot that one...

master
Richard van Velzen 2012-01-02 13:00:21 +01:00
parent f669d69163
commit e19abf7e21
1 changed files with 6 additions and 6 deletions

View File

@ -78,18 +78,18 @@ BLOCKCMT "/*"({CC}|{CX})*{CT}
<pragma>{ <pragma>{
\n { \n {
out("stop", "."); out("stop", ".");
yy_pop_state(); yy_pop_state();
} }
[[:space:]] {} [[:space:]] {}
{SYM} tok("sym"); {SYM} tok("sym");
{LIT} tok("lit"); {LIT} tok("lit");
{DIGIT} tok("num"); {DIGIT} tok("num");
\"{DCHAR}*\" tok("str"); \"{DCHAR}*\" tok("str");
'{SCHAR}*' tok("str"); '{SCHAR}*' tok("str");
. lit(); . lit();
} }
<code>{ <code>{