 |
Free Electron
|
16 #define api_incr_top(L) {L->top++; api_check(L, L->top <= L->ci->top, \ 25 #define adjustresults(L,nres) \ 26 { if ((nres) <= LUA_MULTRET && L->ci->top < L->top) L->ci->top = L->top; } 30 #define api_checknelems(L,n) api_check(L, (n) < (L->top - L->ci->func), \ 31 "not enough elements in the stack") 43 #define hastocloseCfunc(n) ((n) < LUA_MULTRET) 45 #define codeNresults(n) (-(n) - 3)