diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-02-15 11:12:01 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-02-15 11:12:01 -0200 |
commit | ffa96d988d60f31591014fe417c27e44fc3116d1 (patch) | |
tree | 8048f52acbc6bbda2733849dfb14b0b57e0ff416 /ltests.c | |
parent | 6a24bd17a8203394405005c1d63d08f0c7c25a27 (diff) | |
download | lua-ffa96d988d60f31591014fe417c27e44fc3116d1.tar.gz lua-ffa96d988d60f31591014fe417c27e44fc3116d1.tar.bz2 lua-ffa96d988d60f31591014fe417c27e44fc3116d1.zip |
field 'op' renamed to 'open'
Diffstat (limited to 'ltests.c')
-rw-r--r-- | ltests.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltests.c,v 2.163 2014/02/11 12:18:12 roberto Exp roberto $ | 2 | ** $Id: ltests.c,v 2.164 2014/02/13 12:11:34 roberto Exp roberto $ |
3 | ** Internal Module for Debugging of the Lua Implementation | 3 | ** Internal Module for Debugging of the Lua Implementation |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -301,7 +301,7 @@ static void checkstack (global_State *g, lua_State *L1) { | |||
301 | CallInfo *ci; | 301 | CallInfo *ci; |
302 | UpVal *uv; | 302 | UpVal *uv; |
303 | lua_assert(!isdead(g, obj2gco(L1))); | 303 | lua_assert(!isdead(g, obj2gco(L1))); |
304 | for (uv = L1->openupval; uv != NULL; uv = uv->u.op.next) | 304 | for (uv = L1->openupval; uv != NULL; uv = uv->u.open.next) |
305 | lua_assert(upisopen(uv)); /* must be open */ | 305 | lua_assert(upisopen(uv)); /* must be open */ |
306 | for (ci = L1->ci; ci != NULL; ci = ci->previous) { | 306 | for (ci = L1->ci; ci != NULL; ci = ci->previous) { |
307 | lua_assert(ci->top <= L1->stack_last); | 307 | lua_assert(ci->top <= L1->stack_last); |