diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-10-26 13:45:41 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-10-26 13:45:41 -0200 |
commit | aef2d711b1d8457ecb5531d1e79d448453e8303c (patch) | |
tree | 34b87f5e73c3eea903b1159536d3084591873d08 /llex.c | |
parent | bdf566a8a32450c2eb6273c8c1a92e2181b6846e (diff) | |
download | lua-aef2d711b1d8457ecb5531d1e79d448453e8303c.tar.gz lua-aef2d711b1d8457ecb5531d1e79d448453e8303c.tar.bz2 lua-aef2d711b1d8457ecb5531d1e79d448453e8303c.zip |
detail
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.84 2014/10/22 11:44:20 roberto Exp roberto $ | 2 | ** $Id: llex.c,v 2.85 2014/10/25 11:50:46 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 | "return", "then", "true", "until", "while", | 41 | "return", "then", "true", "until", "while", |
42 | "//", "..", "...", "==", ">=", "<=", "~=", | 42 | "//", "..", "...", "==", ">=", "<=", "~=", |
43 | "<<", ">>", "::", "<eof>", | 43 | "<<", ">>", "::", "<eof>", |
44 | "<number>", "<number>", "<name>", "<string>" | 44 | "<number>", "<integer>", "<name>", "<string>" |
45 | }; | 45 | }; |
46 | 46 | ||
47 | 47 | ||