diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-01-30 15:26:44 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-01-30 15:26:44 -0200 |
commit | d6fd33e76fdeb919fd91860aa9d0f9524e6d415a (patch) | |
tree | f2347c99a8d57564b22e622d405f5c3d03061982 /lua.h | |
parent | 50e29525936be4891f9db090f293432913b5f7c0 (diff) | |
download | lua-d6fd33e76fdeb919fd91860aa9d0f9524e6d415a.tar.gz lua-d6fd33e76fdeb919fd91860aa9d0f9524e6d415a.tar.bz2 lua-d6fd33e76fdeb919fd91860aa9d0f9524e6d415a.zip |
`eventtable' renamed to `metatable'
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -153,7 +153,7 @@ LUA_API void lua_gettable (lua_State *L, int index); | |||
153 | LUA_API void lua_rawget (lua_State *L, int index); | 153 | LUA_API void lua_rawget (lua_State *L, int index); |
154 | LUA_API void lua_rawgeti (lua_State *L, int index, int n); | 154 | LUA_API void lua_rawgeti (lua_State *L, int index, int n); |
155 | LUA_API void lua_newtable (lua_State *L); | 155 | LUA_API void lua_newtable (lua_State *L); |
156 | LUA_API void lua_geteventtable (lua_State *L, int objindex); | 156 | LUA_API void lua_getmetatable (lua_State *L, int objindex); |
157 | 157 | ||
158 | 158 | ||
159 | /* | 159 | /* |
@@ -164,7 +164,7 @@ LUA_API void lua_settable (lua_State *L, int index); | |||
164 | LUA_API void lua_rawset (lua_State *L, int index); | 164 | LUA_API void lua_rawset (lua_State *L, int index); |
165 | LUA_API void lua_rawseti (lua_State *L, int index, int n); | 165 | LUA_API void lua_rawseti (lua_State *L, int index, int n); |
166 | LUA_API void lua_setglobals (lua_State *L); | 166 | LUA_API void lua_setglobals (lua_State *L); |
167 | LUA_API void lua_seteventtable (lua_State *L, int objindex); | 167 | LUA_API void lua_setmetatable (lua_State *L, int objindex); |
168 | 168 | ||
169 | 169 | ||
170 | /* | 170 | /* |