aboutsummaryrefslogtreecommitdiffstats
path: root/util-src/signal.c
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2015-04-26 12:38:37 +0200
committerKim Alvefur <zash@zash.se>2015-04-26 12:38:37 +0200
commitddeed6873e5d6b759da52de91c23c8ea1224f217 (patch)
tree48f9ee8f36121df679a3ab395e433e2a8b994c3d /util-src/signal.c
parentdb2152e88814ad5ad29533c5adb3aeba746e1c76 (diff)
downloadprosody-ddeed6873e5d6b759da52de91c23c8ea1224f217.tar.gz
prosody-ddeed6873e5d6b759da52de91c23c8ea1224f217.zip
util-src/*.c: Invert Lua 5.2 compat to be 5.2+ by default and a macro to support 5.1
Diffstat (limited to 'util-src/signal.c')
-rw-r--r--util-src/signal.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/util-src/signal.c b/util-src/signal.c
index 1e988a2c..725555fa 100644
--- a/util-src/signal.c
+++ b/util-src/signal.c
@@ -32,8 +32,8 @@
#include "lua.h"
#include "lauxlib.h"
-#if (LUA_VERSION_NUM == 502)
-#define luaL_register(L, N, R) luaL_setfuncs(L, R, 0)
+#if (LUA_VERSION_NUM == 501)
+#define luaL_setfuncs(L, R, N) luaL_register(L, NULL, R)
#endif
#ifndef lsig
@@ -388,7 +388,7 @@ int luaopen_util_signal(lua_State* L) {
/* add the library */
lua_newtable(L);
- luaL_register(L, NULL, lsignal_lib);
+ luaL_setfuncs(L, lsignal_lib, 0);
/* push lua_signals table into the registry */
/* put the signals inside the library table too,