From fee9e473f256cf5abe9072be7d912e87f66c8818 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 5 May 2003 15:39:57 -0300 Subject: inlining of `luaV_gettable' were too complex (dirty) --- lapi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lapi.c') diff --git a/lapi.c b/lapi.c index a8c34ed1..a4a2b647 100644 --- a/lapi.c +++ b/lapi.c @@ -1,5 +1,5 @@ /* -** $Id: lapi.c,v 1.235 2003/04/07 14:36:08 roberto Exp roberto $ +** $Id: lapi.c,v 1.236 2003/04/28 19:58:06 roberto Exp roberto $ ** Lua API ** See Copyright Notice in lua.h */ @@ -485,7 +485,7 @@ LUA_API void lua_gettable (lua_State *L, int idx) { StkId t; lua_lock(L); t = luaA_index(L, idx); - setobj2s(L->top - 1, luaV_gettable(L, t, L->top - 1, 0)); + luaV_gettable(L, t, L->top - 1, L->top - 1); lua_unlock(L); } -- cgit v1.2.3-55-g6feb