aboutsummaryrefslogtreecommitdiff
path: root/lapi.h
diff options
context:
space:
mode:
Diffstat (limited to 'lapi.h')
-rw-r--r--lapi.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/lapi.h b/lapi.h
index a742427c..43845648 100644
--- a/lapi.h
+++ b/lapi.h
@@ -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/*