diff options
Diffstat (limited to 'lapi.h')
-rw-r--r-- | lapi.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -13,9 +13,8 @@ | |||
13 | 13 | ||
14 | 14 | ||
15 | /* Increments 'L->top.p', checking for stack overflows */ | 15 | /* Increments 'L->top.p', checking for stack overflows */ |
16 | #define api_incr_top(L) {L->top.p++; \ | 16 | #define api_incr_top(L) \ |
17 | api_check(L, L->top.p <= L->ci->top.p, \ | 17 | (L->top.p++, api_check(L, L->top.p <= L->ci->top.p, "stack overflow")) |
18 | "stack overflow");} | ||
19 | 18 | ||
20 | 19 | ||
21 | /* | 20 | /* |