diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-05-05 15:39:57 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-05-05 15:39:57 -0300 |
commit | fee9e473f256cf5abe9072be7d912e87f66c8818 (patch) | |
tree | da239776fe1ed0ba397488b013ca821a552dcc7a /lvm.h | |
parent | 82dfacbcf7fc62cfc9848808b02d935901135196 (diff) | |
download | lua-github-fee9e473f256cf5abe9072be7d912e87f66c8818.tar.gz |
inlining of `luaV_gettable' were too complex (dirty)
Diffstat (limited to 'lvm.h')
-rw-r--r-- | lvm.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,5 +1,5 @@ /* -** $Id: lvm.h,v 1.46 2002/08/07 19:22:39 roberto Exp roberto $ +** $Id: lvm.h,v 1.47 2002/11/14 16:16:21 roberto Exp roberto $ ** Lua virtual machine ** See Copyright Notice in lua.h */ @@ -26,8 +26,7 @@ int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r); int luaV_equalval (lua_State *L, const TObject *t1, const TObject *t2); const TObject *luaV_tonumber (const TObject *obj, TObject *n); int luaV_tostring (lua_State *L, StkId obj); -const TObject *luaV_gettable (lua_State *L, const TObject *t, TObject *key, - int loop); +void luaV_gettable (lua_State *L, const TObject *t, TObject *key, StkId val); void luaV_settable (lua_State *L, const TObject *t, TObject *key, StkId val); StkId luaV_execute (lua_State *L); void luaV_concat (lua_State *L, int total, int last); |