summaryrefslogtreecommitdiff
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 339b92a1..0dc47fd2 100644
--- a/llex.c
+++ b/llex.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.c,v 1.108 2002/07/10 20:43:53 roberto Exp roberto $ 2** $Id: llex.c,v 1.109 2002/08/16 14:45:55 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*/
@@ -27,7 +27,7 @@
27/* ORDER RESERVED */ 27/* ORDER RESERVED */
28static const char *const token2string [] = { 28static const char *const token2string [] = {
29 "and", "break", "do", "else", "elseif", 29 "and", "break", "do", "else", "elseif",
30 "end", "false", "for", "function", "global", "if", 30 "end", "false", "for", "function", "if",
31 "in", "local", "nil", "not", "or", "repeat", 31 "in", "local", "nil", "not", "or", "repeat",
32 "return", "then", "true", "until", "while", "*name", 32 "return", "then", "true", "until", "while", "*name",
33 "..", "...", "==", ">=", "<=", "~=", 33 "..", "...", "==", ">=", "<=", "~=",