From ad0704e40cc7b3135fedc6d40a522addb039e090 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 7 Nov 2017 11:25:26 -0200 Subject: back to 'CallInfo' (no gains with its removal) --- lapi.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'lapi.h') diff --git a/lapi.h b/lapi.h index d851d161..77ebb300 100644 --- a/lapi.h +++ b/lapi.h @@ -1,5 +1,5 @@ /* -** $Id: lapi.h,v 2.10 2017/11/01 18:20:48 roberto Exp roberto $ +** $Id: lapi.h,v 2.10 2017/11/01 18:20:48 roberto Exp $ ** Auxiliary functions from Lua API ** See Copyright Notice in lua.h */ @@ -11,14 +11,13 @@ #include "llimits.h" #include "lstate.h" -#define api_incr_top(L) {L->top++; api_check(L, L->top <= functop(L->func), \ +#define api_incr_top(L) {L->top++; api_check(L, L->top <= L->ci->top, \ "stack overflow");} #define adjustresults(L,nres) \ - { if ((nres) == LUA_MULTRET && functop(L->func) < L->top) \ - setfunctop(L->func, L->top); } + { if ((nres) == LUA_MULTRET && L->ci->top < L->top) L->ci->top = L->top; } -#define api_checknelems(L,n) api_check(L, (n) < (L->top - L->func), \ +#define api_checknelems(L,n) api_check(L, (n) < (L->top - L->ci->func), \ "not enough elements in the stack") -- cgit v1.2.3-55-g6feb