aboutsummaryrefslogtreecommitdiff
path: root/lapi.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2015-03-06 16:49:50 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2015-03-06 16:49:50 -0300
commita30c66f0fc17bf733c2289a0d7a76930dac80f47 (patch)
tree96d7e5fff8245da7540d14818adc28f420036b26 /lapi.h
parentbb4baa73ea85c0fd49ab2ab96f0f174cd131830a (diff)
downloadlua-a30c66f0fc17bf733c2289a0d7a76930dac80f47.tar.gz
lua-a30c66f0fc17bf733c2289a0d7a76930dac80f47.tar.bz2
lua-a30c66f0fc17bf733c2289a0d7a76930dac80f47.zip
macro 'luai_apicheck'/'api_check' back with a 'lua_State' parameter
(some people use it)
Diffstat (limited to 'lapi.h')
-rw-r--r--lapi.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lapi.h b/lapi.h
index 3f10e6fb..b39898eb 100644
--- a/lapi.h
+++ b/lapi.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lapi.h,v 2.7 2009/11/27 15:37:59 roberto Exp roberto $ 2** $Id: lapi.h,v 2.8 2014/07/15 21:26:50 roberto Exp roberto $
3** Auxiliary functions from Lua API 3** Auxiliary functions from Lua API
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -11,13 +11,13 @@
11#include "llimits.h" 11#include "llimits.h"
12#include "lstate.h" 12#include "lstate.h"
13 13
14#define api_incr_top(L) {L->top++; api_check(L->top <= L->ci->top, \ 14#define api_incr_top(L) {L->top++; api_check(L, L->top <= L->ci->top, \
15 "stack overflow");} 15 "stack overflow");}
16 16
17#define adjustresults(L,nres) \ 17#define adjustresults(L,nres) \
18 { if ((nres) == LUA_MULTRET && L->ci->top < L->top) L->ci->top = L->top; } 18 { if ((nres) == LUA_MULTRET && L->ci->top < L->top) L->ci->top = L->top; }
19 19
20#define api_checknelems(L,n) api_check((n) < (L->top - L->ci->func), \ 20#define api_checknelems(L,n) api_check(L, (n) < (L->top - L->ci->func), \
21 "not enough elements in the stack") 21 "not enough elements in the stack")
22 22
23 23