diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2004-12-02 10:59:10 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2004-12-02 10:59:10 -0200 |
commit | e1c2fb6eed19f597e2f05ab2dec969d144d5e4bb (patch) | |
tree | 0df94b93204db2c9969b5da1e05ea5d846d98bc4 /llex.h | |
parent | 12dacd3c0e2fe29542520101b19a43d98aea4081 (diff) | |
download | lua-e1c2fb6eed19f597e2f05ab2dec969d144d5e4bb.tar.gz lua-e1c2fb6eed19f597e2f05ab2dec969d144d5e4bb.tar.bz2 lua-e1c2fb6eed19f597e2f05ab2dec969d144d5e4bb.zip |
details
Diffstat (limited to 'llex.h')
-rw-r--r-- | llex.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llex.h,v 1.49 2003/10/20 12:24:34 roberto Exp roberto $ | 2 | ** $Id: llex.h,v 1.50 2004/03/12 19:53:56 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 | */ |
@@ -36,6 +36,10 @@ enum RESERVED { | |||
36 | #define NUM_RESERVED (cast(int, TK_WHILE-FIRST_RESERVED+1)) | 36 | #define NUM_RESERVED (cast(int, TK_WHILE-FIRST_RESERVED+1)) |
37 | 37 | ||
38 | 38 | ||
39 | /* array with token `names' */ | ||
40 | extern const char *const luaX_tokens []; | ||
41 | |||
42 | |||
39 | typedef union { | 43 | typedef union { |
40 | lua_Number r; | 44 | lua_Number r; |
41 | TString *ts; | 45 | TString *ts; |