mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-04-05 01:11:00 +00:00
fix a lexer error which parsed !! as one operator
This commit is contained in:
parent
2f5a26a4de
commit
b4a5517851
1 changed files with 1 additions and 1 deletions
2
lexer.c
2
lexer.c
|
@ -1164,7 +1164,7 @@ int lex_do(lex_file *lex)
|
|||
lex_tokench(lex, ch);
|
||||
|
||||
nextch = lex_getch(lex);
|
||||
if (nextch == ch || nextch == '=') {
|
||||
if (nextch == '=' || (nextch == ch && ch != '!')) {
|
||||
lex_tokench(lex, nextch);
|
||||
} else if (ch == '-' && nextch == '>') {
|
||||
lex_tokench(lex, nextch);
|
||||
|
|
Loading…
Reference in a new issue