diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-07-15 18:26:50 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-07-15 18:26:50 -0300 |
commit | 5bbb4a06a692ec2c9773274f0f99c7573838e86b (patch) | |
tree | 4bfac6a4dde1a3f0764b7bdbdcb697a0581b9452 /lapi.h | |
parent | d4fb848be77f4b0209acaf37a5b5e1cee741ddce (diff) | |
download | lua-5bbb4a06a692ec2c9773274f0f99c7573838e86b.tar.gz lua-5bbb4a06a692ec2c9773274f0f99c7573838e86b.tar.bz2 lua-5bbb4a06a692ec2c9773274f0f99c7573838e86b.zip |
removed unused parameter Ä'L' in macro 'api_check' and company
Diffstat (limited to 'lapi.h')
-rw-r--r-- | lapi.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lapi.h,v 2.6 2009/08/31 14:26:28 roberto Exp roberto $ | 2 | ** $Id: lapi.h,v 2.7 2009/11/27 15:37:59 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, L->top <= L->ci->top, \ | 14 | #define api_incr_top(L) {L->top++; api_check(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(L, (n) < (L->top - L->ci->func), \ | 20 | #define api_checknelems(L,n) api_check((n) < (L->top - L->ci->func), \ |
21 | "not enough elements in the stack") | 21 | "not enough elements in the stack") |
22 | 22 | ||
23 | 23 | ||