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 7c8ccd22..4efcb873 100644
--- a/llex.c
+++ b/llex.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.c,v 1.55 2000/04/05 17:51:58 roberto Exp roberto $ 2** $Id: llex.c,v 1.56 2000/04/07 13:11:49 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*/
@@ -32,7 +32,7 @@
32 32
33/* ORDER RESERVED */ 33/* ORDER RESERVED */
34static const char *const token2string [] = { 34static const char *const token2string [] = {
35 "and", "break", "do", "else", "elseif", "end", 35 "and", "break", "do", "else", "elseif", "end", "for",
36 "function", "if", "local", "nil", "not", "or", "repeat", "return", "then", 36 "function", "if", "local", "nil", "not", "or", "repeat", "return", "then",
37 "until", "while", "", "..", "...", "==", ">=", "<=", "~=", "", "", "<eof>"}; 37 "until", "while", "", "..", "...", "==", ">=", "<=", "~=", "", "", "<eof>"};
38 38