commit 34aac33c15b8622004b34d08bec28cae2141675a
parent 3c2cf9db672bb18dde960ec445a3c98c56435f98
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Mon, 13 Jun 2005 18:17:37 -0300
detail
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git 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;
}