From 8f1f6160e3421baa7210314ed862ce86dab3ff71 Mon Sep 17 00:00:00 2001
From: "Wolfgang (Blub) Bumiller" <blub@speed.at>
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 a550ed0..a555895 100644
--- a/lexer.c
+++ b/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;
-- 
2.39.5