summaryrefslogtreecommitdiff
path: root/lvm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-05-05 15:39:57 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-05-05 15:39:57 -0300
commitfee9e473f256cf5abe9072be7d912e87f66c8818 (patch)
treeda239776fe1ed0ba397488b013ca821a552dcc7a /lvm.h
parent82dfacbcf7fc62cfc9848808b02d935901135196 (diff)
downloadlua-github-fee9e473f256cf5abe9072be7d912e87f66c8818.tar.gz
inlining of `luaV_gettable' were too complex (dirty)
Diffstat (limited to 'lvm.h')
-rw-r--r--lvm.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/lvm.h b/lvm.h
index 028bb28d..667b25bb 100644
--- a/lvm.h
+++ b/lvm.h
@@ -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);