diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-12-10 10:13:36 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-12-10 10:13:36 -0200 |
commit | 47fc57a2529c83376883f36954082cfe80ae588f (patch) | |
tree | c2e57e2f9f7d78279144bfd9cbd04a3b1b131f12 /ltm.h | |
parent | 4d5fe1f54bc00850f77a7c42f9e95d0ff3f1ab5b (diff) | |
download | lua-47fc57a2529c83376883f36954082cfe80ae588f.tar.gz lua-47fc57a2529c83376883f36954082cfe80ae588f.tar.bz2 lua-47fc57a2529c83376883f36954082cfe80ae588f.zip |
`TObject' renamed to `TValue' + other name changes and better assertions
for incremental garbage collection
Diffstat (limited to 'ltm.h')
-rw-r--r-- | ltm.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltm.h,v 1.41 2002/11/14 11:51:50 roberto Exp roberto $ | 2 | ** $Id: ltm.h,v 1.42 2003/12/01 18:22:56 roberto Exp roberto $ |
3 | ** Tag methods | 3 | ** Tag methods |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -42,8 +42,8 @@ typedef enum { | |||
42 | #define fasttm(l,et,e) gfasttm(G(l), et, e) | 42 | #define fasttm(l,et,e) gfasttm(G(l), et, e) |
43 | 43 | ||
44 | 44 | ||
45 | const TObject *luaT_gettm (Table *events, TMS event, TString *ename); | 45 | const TValue *luaT_gettm (Table *events, TMS event, TString *ename); |
46 | const TObject *luaT_gettmbyobj (lua_State *L, const TObject *o, TMS event); | 46 | const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o, TMS event); |
47 | void luaT_init (lua_State *L); | 47 | void luaT_init (lua_State *L); |
48 | 48 | ||
49 | extern const char *const luaT_typenames[]; | 49 | extern const char *const luaT_typenames[]; |