aboutsummaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/llex.h b/llex.h
index deb9e74d..022e175d 100644
--- a/llex.h
+++ b/llex.h
@@ -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' */
40extern const char *const luaX_tokens [];
41
42
39typedef union { 43typedef union {
40 lua_Number r; 44 lua_Number r;
41 TString *ts; 45 TString *ts;