From 6204c8c956cbf9ab604a88bd9781f4b4fc7a2afa Mon Sep 17 00:00:00 2001 From: "Wolfgang (Blub) Bumiller" Date: Tue, 13 Nov 2012 18:51:45 +0100 Subject: [PATCH] 'not' is now a keyword --- lexer.c | 1 + 1 file changed, 1 insertion(+) 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; -- 2.39.2