aboutsummaryrefslogtreecommitdiff
path: root/llex.c
diff options
context:
space:
mode:
Diffstat (limited to 'llex.c')
-rw-r--r--llex.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/llex.c b/llex.c
index 59070437..e7c37efa 100644
--- a/llex.c
+++ b/llex.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.c,v 2.7 2004/12/02 12:59:10 roberto Exp roberto $ 2** $Id: llex.c,v 2.8 2004/12/03 20:44:19 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*/
@@ -36,9 +36,9 @@ const char *const luaX_tokens [] = {
36 "and", "break", "do", "else", "elseif", 36 "and", "break", "do", "else", "elseif",
37 "end", "false", "for", "function", "if", 37 "end", "false", "for", "function", "if",
38 "in", "local", "nil", "not", "or", "repeat", 38 "in", "local", "nil", "not", "or", "repeat",
39 "return", "then", "true", "until", "while", "<name>", 39 "return", "then", "true", "until", "while",
40 "..", "...", "==", ">=", "<=", "~=", 40 "..", "...", "==", ">=", "<=", "~=",
41 "<number>", "<string>", "<eof>", 41 "<number>", "<name>", "<string>", "<eof>",
42 NULL 42 NULL
43}; 43};
44 44