about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-11-29 22:49:45 -0800
committerKartik K. Agaram <vc@akkartik.com>2021-11-29 22:49:45 -0800
commit85e06b7b0f5a803013acdfda609c5bb61218ea97 (patch)
treed9019cfb9b9f265802ae6af67c7e1c7b8b1b3f6d
parent61accc5b8e2e7d15eb0f6f9c7040df45335ba215 (diff)
downloadteliva-85e06b7b0f5a803013acdfda609c5bb61218ea97.tar.gz
gotcha: silent string concatenation
-rw-r--r--src/kilo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kilo.c b/src/kilo.c
index 8bc1213..bb4531e 100644
--- a/src/kilo.c
+++ b/src/kilo.c
@@ -127,7 +127,7 @@ static void editorSetStatusMessage(const char *fmt, ...);
 /* Lua */
 char *Lua_HL_keywords[] = {
     /* keywords */
-    "do", "end", "function", "return", "require", "local"
+    "do", "end", "function", "return", "require", "local",
     "if", "then", "else", "elseif",
     "while", "for", "repeat", "until", "break",
     "and", "or", "not", "in",