aboutsummaryrefslogtreecommitdiff
path: root/llex.c
diff options
context:
space:
mode:
Diffstat (limited to 'llex.c')
-rw-r--r--llex.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/llex.c b/llex.c
index f56b0a21..ec8231a2 100644
--- a/llex.c
+++ b/llex.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.c,v 1.53 2000/03/10 18:37:44 roberto Exp roberto $ 2** $Id: llex.c,v 1.54 2000/03/24 17:26:08 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*/
@@ -31,7 +31,8 @@
31 31
32 32
33/* ORDER RESERVED */ 33/* ORDER RESERVED */
34static const char *const token2string [] = {"and", "do", "else", "elseif", "end", 34static const char *const token2string [] = {
35 "and", "break", "do", "else", "elseif", "end",
35 "function", "if", "local", "nil", "not", "or", "repeat", "return", "then", 36 "function", "if", "local", "nil", "not", "or", "repeat", "return", "then",
36 "until", "while", "", "..", "...", "==", ">=", "<=", "~=", "", "", "<eof>"}; 37 "until", "while", "", "..", "...", "==", ">=", "<=", "~=", "", "", "<eof>"};
37 38