diff options
Diffstat (limited to 'llex.c')
-rw-r--r-- | llex.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llex.c,v 1.92 2001/11/16 16:29:10 roberto Exp $ | 2 | ** $Id: llex.c,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $ |
3 | ** Lexical Analyzer | 3 | ** Lexical Analyzer |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -27,9 +27,9 @@ | |||
27 | /* ORDER RESERVED */ | 27 | /* ORDER RESERVED */ |
28 | static const char *const token2string [] = { | 28 | static const char *const token2string [] = { |
29 | "and", "break", "do", "else", "elseif", | 29 | "and", "break", "do", "else", "elseif", |
30 | "end", "for", "function", "global", "if", | 30 | "end", "false", "for", "function", "global", "if", |
31 | "in", "local", "nil", "not", "or", "repeat", | 31 | "in", "local", "nil", "not", "or", "repeat", |
32 | "return", "then", "until", "while", "", | 32 | "return", "then", "true", "until", "while", "", |
33 | "..", "...", "==", ">=", "<=", "~=", | 33 | "..", "...", "==", ">=", "<=", "~=", |
34 | "", "", "<eof>" | 34 | "", "", "<eof>" |
35 | }; | 35 | }; |