summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/lua/lapi.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-05-20 06:51:25 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-05-20 06:51:25 +0000
commit1c05ccc93bd32a9bb5a50f18e2e8bd29c3511e25 (patch)
tree7133a7cea14e7c27e731c320b87663971b1a31d3 /src/lib/lua/lapi.h
parentcae878c9b438a4b88678db213db9c4aed215b5cc (diff)
Cleanups and version bumpmame0148u5
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