1
0
mirror of https://github.com/lua/lua synced 2026-06-08 15:34:49 +00:00
This commit is contained in:
Roberto Ierusalimschy
2005-06-13 18:17:59 -03:00
parent 3c2cf9db67
commit 34aac33c15
+1 -2
View File
@@ -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;
}