From: Wolfgang (Blub) Bumiller Date: Tue, 13 Nov 2012 17:51:45 +0000 (+0100) Subject: 'not' is now a keyword X-Git-Tag: 0.1~25 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=6204c8c956cbf9ab604a88bd9781f4b4fc7a2afa;p=xonotic%2Fgmqcc.git 'not' is now a keyword --- diff --git a/lexer.c b/lexer.c index 64caad6..8485192 100644 --- a/lexer.c +++ b/lexer.c @@ -1083,6 +1083,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;