summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/lua/lfunc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/lua/lfunc.h')
-rw-r--r--src/lib/lua/lfunc.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/lua/lfunc.h b/src/lib/lua/lfunc.h
index e236a717c65..563ffe520f3 100644
--- a/src/lib/lua/lfunc.h
+++ b/src/lib/lua/lfunc.h
@@ -11,11 +11,11 @@
#include "lobject.h"
-#define sizeCclosure(n) (cast(int, sizeof(CClosure)) + \
- cast(int, sizeof(TValue)*((n)-1)))
+#define sizeCclosure(n) (cast(int, sizeof(CClosure)) + \
+ cast(int, sizeof(TValue)*((n)-1)))
-#define sizeLclosure(n) (cast(int, sizeof(LClosure)) + \
- cast(int, sizeof(TValue *)*((n)-1)))
+#define sizeLclosure(n) (cast(int, sizeof(LClosure)) + \
+ cast(int, sizeof(TValue *)*((n)-1)))
LUAI_FUNC Proto *luaF_newproto (lua_State *L);
@@ -27,7 +27,7 @@ LUAI_FUNC void luaF_close (lua_State *L, StkId level);
LUAI_FUNC void luaF_freeproto (lua_State *L, Proto *f);
LUAI_FUNC void luaF_freeupval (lua_State *L, UpVal *uv);
LUAI_FUNC const char *luaF_getlocalname (const Proto *func, int local_number,
- int pc);
+ int pc);
#endif