mirror of
https://github.com/lua/lua
synced 2024-11-23 05:11:45 +03:00
detail
This commit is contained in:
parent
3c2cf9db67
commit
34aac33c15
3
ldo.c
3
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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user