Diff

util-src/signal.c @ 6791:e813e8cf6046

Merge 0.10->trunk
author Kim Alvefur <zash@zash.se>
date Thu, 20 Aug 2015 13:05:22 +0200
parent 6789:6b180e77c97a
child 7818:54669df178c2
line wrap: on
line diff
--- a/util-src/signal.c	Mon Aug 17 01:58:53 2015 +0200
+++ b/util-src/signal.c	Thu Aug 20 13:05:22 2015 +0200
@@ -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 @@
 
 	/* 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,