From 34aac33c15b8622004b34d08bec28cae2141675a Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 13 Jun 2005 18:17:59 -0300 Subject: detail --- ldo.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ldo.c b/ldo.c index a9617046..940e5562 100644 --- a/ldo.c +++ b/ldo.c @@ -1,5 +1,5 @@ /* -** $Id: ldo.c,v 2.25 2005/05/31 14:25:18 roberto Exp roberto $ +** $Id: ldo.c,v 2.26 2005/06/13 14:15:54 roberto Exp roberto $ ** Stack and Call structure of Lua ** See Copyright Notice in lua.h */ @@ -116,7 +116,6 @@ static void correctstack (lua_State *L, TValue *oldstack) { ci->top = (ci->top - oldstack) + L->stack; ci->base = (ci->base - oldstack) + L->stack; ci->func = (ci->func - oldstack) + L->stack; - lua_assert(lua_checkpc(L, ci)); } L->base = L->ci->base; } -- cgit v1.2.3-55-g6feb