aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-06-13 18:17:59 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-06-13 18:17:59 -0300
commit34aac33c15b8622004b34d08bec28cae2141675a (patch)
tree49c0e2cd8a175d654e3b156d9861f250c451b722
parent3c2cf9db672bb18dde960ec445a3c98c56435f98 (diff)
downloadlua-34aac33c15b8622004b34d08bec28cae2141675a.tar.gz
lua-34aac33c15b8622004b34d08bec28cae2141675a.tar.bz2
lua-34aac33c15b8622004b34d08bec28cae2141675a.zip
detail
-rw-r--r--ldo.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ldo.c b/ldo.c
index a9617046..940e5562 100644
--- a/ldo.c
+++ b/ldo.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.c,v 2.25 2005/05/31 14:25:18 roberto Exp roberto $ 2** $Id: ldo.c,v 2.26 2005/06/13 14:15:54 roberto Exp roberto $
3** Stack and Call structure of Lua 3** Stack and Call structure of Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -116,7 +116,6 @@ static void correctstack (lua_State *L, TValue *oldstack) {
116 ci->top = (ci->top - oldstack) + L->stack; 116 ci->top = (ci->top - oldstack) + L->stack;
117 ci->base = (ci->base - oldstack) + L->stack; 117 ci->base = (ci->base - oldstack) + L->stack;
118 ci->func = (ci->func - oldstack) + L->stack; 118 ci->func = (ci->func - oldstack) + L->stack;
119 lua_assert(lua_checkpc(L, ci));
120 } 119 }
121 L->base = L->ci->base; 120 L->base = L->ci->base;
122} 121}