'not' is now a keyword

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-11-13 18:51:45 +01:00
parent e1c8e54863
commit 6204c8c956

View file

@ -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;