diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-03-14 12:57:19 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-03-14 12:57:19 -0300 |
commit | 3226ac2da8477456aaa38443507d3f276ebd74b7 (patch) | |
tree | 5e031e000a130aff06f262fbb68599dd79fc03b7 /table.h | |
parent | 3e9daa741623aaa8a191aa98cd43e462b8bf2d33 (diff) | |
download | lua-3226ac2da8477456aaa38443507d3f276ebd74b7.tar.gz lua-3226ac2da8477456aaa38443507d3f276ebd74b7.tar.bz2 lua-3226ac2da8477456aaa38443507d3f276ebd74b7.zip |
"lua_ntable" and "lua_nconstant" are public (undump.c uses them).
Diffstat (limited to 'table.h')
-rw-r--r-- | table.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | ** Module to control static tables | 2 | ** Module to control static tables |
3 | ** TeCGraf - PUC-Rio | 3 | ** TeCGraf - PUC-Rio |
4 | ** $Id: table.h,v 2.18 1996/02/14 13:35:51 roberto Exp roberto $ | 4 | ** $Id: table.h,v 2.19 1996/02/26 21:00:27 roberto Exp roberto $ |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #ifndef table_h | 7 | #ifndef table_h |
@@ -18,7 +18,9 @@ typedef struct | |||
18 | 18 | ||
19 | 19 | ||
20 | extern Symbol *lua_table; | 20 | extern Symbol *lua_table; |
21 | extern Word lua_ntable; | ||
21 | extern TaggedString **lua_constant; | 22 | extern TaggedString **lua_constant; |
23 | extern Word lua_nconstant; | ||
22 | 24 | ||
23 | void luaI_initsymbol (void); | 25 | void luaI_initsymbol (void); |
24 | void luaI_initconstant (void); | 26 | void luaI_initconstant (void); |