This commit is contained in:
Roberto Ierusalimschy
2004-12-02 10:59:10 -02:00
parent 12dacd3c0e
commit e1c2fb6eed
4 changed files with 18 additions and 12 deletions

6
llex.h
View File

@@ -1,5 +1,5 @@
/*
** $Id: llex.h,v 1.49 2003/10/20 12:24:34 roberto Exp roberto $
** $Id: llex.h,v 1.50 2004/03/12 19:53:56 roberto Exp roberto $
** Lexical Analyzer
** See Copyright Notice in lua.h
*/
@@ -36,6 +36,10 @@ enum RESERVED {
#define NUM_RESERVED (cast(int, TK_WHILE-FIRST_RESERVED+1))
/* array with token `names' */
extern const char *const luaX_tokens [];
typedef union {
lua_Number r;
TString *ts;