aboutsummaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-12-02 10:59:10 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-12-02 10:59:10 -0200
commite1c2fb6eed19f597e2f05ab2dec969d144d5e4bb (patch)
tree0df94b93204db2c9969b5da1e05ea5d846d98bc4 /llex.h
parent12dacd3c0e2fe29542520101b19a43d98aea4081 (diff)
downloadlua-e1c2fb6eed19f597e2f05ab2dec969d144d5e4bb.tar.gz
lua-e1c2fb6eed19f597e2f05ab2dec969d144d5e4bb.tar.bz2
lua-e1c2fb6eed19f597e2f05ab2dec969d144d5e4bb.zip
details
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;