diff options
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; |