diff options
Diffstat (limited to 'lexxer.l')
-rw-r--r-- | lexxer.l | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -204,6 +204,8 @@ static void doSharp(const char *body); /* process body of # directives */ <Normal>">" RETURN(syRAngle); <Normal>"[" RETURN(syLBrack); <Normal>"]" RETURN(syRBrack); +<Normal>"{" RETURN(syLCBrack); +<Normal>"}" RETURN(syRCBrack); <Normal>"|" RETURN(syBar); <Normal>{Ident} { yylval.identifier = strmake(yytext); |