diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-04-04 11:23:41 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-04-04 11:23:41 -0300 |
commit | 03c6a05ec836c3a90a6b8d730120afdad39c092b (patch) | |
tree | 31f0bdf82969b1e082e92d7b5dd5d9e1496d64af /llex.c | |
parent | 3d0b5edfe4df7ec54d6885b6b6ce917faddf6661 (diff) | |
download | lua-03c6a05ec836c3a90a6b8d730120afdad39c092b.tar.gz lua-03c6a05ec836c3a90a6b8d730120afdad39c092b.tar.bz2 lua-03c6a05ec836c3a90a6b8d730120afdad39c092b.zip |
no more nil-in-table
Diffstat (limited to 'llex.c')
-rw-r--r-- | llex.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llex.c,v 2.100 2018/02/23 13:13:31 roberto Exp roberto $ | 2 | ** $Id: llex.c,v 2.101 2018/03/07 15:55:38 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 | */ |
@@ -41,7 +41,7 @@ static const char *const luaX_tokens [] = { | |||
41 | "and", "break", "do", "else", "elseif", | 41 | "and", "break", "do", "else", "elseif", |
42 | "end", "false", "for", "function", "goto", "if", | 42 | "end", "false", "for", "function", "goto", "if", |
43 | "in", "local", "nil", "not", "or", "repeat", | 43 | "in", "local", "nil", "not", "or", "repeat", |
44 | "return", "then", "true", "undef", "until", "while", | 44 | "return", "then", "true", "until", "while", |
45 | "//", "..", "...", "==", ">=", "<=", "~=", | 45 | "//", "..", "...", "==", ">=", "<=", "~=", |
46 | "<<", ">>", "::", "<eof>", | 46 | "<<", ">>", "::", "<eof>", |
47 | "<number>", "<integer>", "<name>", "<string>" | 47 | "<number>", "<integer>", "<name>", "<string>" |