mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-19 06:40:49 +00:00
'not' is now a keyword
This commit is contained in:
parent
51ba2c49d6
commit
8f1f6160e3
1 changed files with 1 additions and 0 deletions
1
lexer.c
1
lexer.c
|
@ -1043,6 +1043,7 @@ int lex_do(lex_file *lex)
|
|||
!strcmp(v, "else") ||
|
||||
!strcmp(v, "local") ||
|
||||
!strcmp(v, "return") ||
|
||||
!strcmp(v, "not") ||
|
||||
!strcmp(v, "const"))
|
||||
{
|
||||
lex->tok.ttype = TOKEN_KEYWORD;
|
||||
|
|
Loading…
Reference in a new issue