mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 13:47:58 +03:00
Remove TOKEN_NUMBER (unused)
Some maps use #xx to indicate an identifier, so remove this token to avoid errors
This commit is contained in:
parent
f719b87e69
commit
a08a9a4f10
2 changed files with 0 additions and 2 deletions
|
@ -103,7 +103,6 @@ int success_pos;
|
|||
%left TOKEN_DOUBLE_COLON
|
||||
%left TOKEN_SEMICOLON
|
||||
%right TOKEN_DOLLAR
|
||||
%left TOKEN_NUMBER
|
||||
|
||||
%token TOKEN_INCREMENT TOKEN_DECREMENT TOKEN_PERIOD
|
||||
|
||||
|
|
|
@ -301,7 +301,6 @@ varname [a-zA-Z0-9_\"\$]+
|
|||
"." { YYLEX( TOKEN_PERIOD ); }
|
||||
|
||||
"," { YYLEX( TOKEN_COMMA ); }
|
||||
"#" { YYLEX( TOKEN_NUMBER ); }
|
||||
|
||||
"NULL" { YYLEX( TOKEN_NULL ); }
|
||||
"NIL" { YYLEX( TOKEN_NIL ); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue