summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/lua/lapi.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/lua/lapi.h')
-rw-r--r--src/lib/lua/lapi.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/lua/lapi.h b/src/lib/lua/lapi.h
index 0909a3911d2..08f54be8d00 100644
--- a/src/lib/lua/lapi.h
+++ b/src/lib/lua/lapi.h
@@ -15,10 +15,10 @@
"stack overflow");}
#define adjustresults(L,nres) \
- { if ((nres) == LUA_MULTRET && L->ci->top < L->top) L->ci->top = L->top; }
+ { if ((nres) == LUA_MULTRET && L->ci->top < L->top) L->ci->top = L->top; }
-#define api_checknelems(L,n) api_check(L, (n) < (L->top - L->ci->func), \
- "not enough elements in the stack")
+#define api_checknelems(L,n) api_check(L, (n) < (L->top - L->ci->func), \
+ "not enough elements in the stack")
#endif