aboutsummaryrefslogtreecommitdiff
path: root/llex.c
diff options
context:
space:
mode:
Diffstat (limited to 'llex.c')
-rw-r--r--llex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/llex.c b/llex.c
index b9e752a8..68ccfc82 100644
--- a/llex.c
+++ b/llex.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.c,v 2.43 2010/12/10 14:53:15 roberto Exp roberto $ 2** $Id: llex.c,v 2.44 2011/01/26 16:30:02 roberto Exp roberto $
3** Lexical Analyzer 3** Lexical Analyzer
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -35,7 +35,7 @@
35/* ORDER RESERVED */ 35/* ORDER RESERVED */
36static const char *const luaX_tokens [] = { 36static const char *const luaX_tokens [] = {
37 "and", "break", "do", "else", "elseif", 37 "and", "break", "do", "else", "elseif",
38 "end", "false", "for", "function", "if", 38 "end", "false", "for", "function", "goto", "if",
39 "in", "local", "nil", "not", "or", "repeat", 39 "in", "local", "nil", "not", "or", "repeat",
40 "return", "then", "true", "until", "while", 40 "return", "then", "true", "until", "while",
41 "..", "...", "==", ">=", "<=", "~=", "<eof>", 41 "..", "...", "==", ">=", "<=", "~=", "<eof>",