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>{
\n {
\n {
out("stop", ".");
yy_pop_state();
}
[[:space:]] {}
{SYM} tok("sym");
{LIT} tok("lit");
{DIGIT} tok("num");
{SYM} tok("sym");
{LIT} tok("lit");
{DIGIT} tok("num");
\"{DCHAR}*\" tok("str");
'{SCHAR}*' tok("str");
'{SCHAR}*' tok("str");
. lit();
. lit();
}
<code>{