util-src/*.c: Invert Lua 5.2 compat to be 5.2+ by default and a macro to support 5.1

This commit is contained in:
Kim Alvefur 2015-04-26 12:38:37 +02:00
parent db2152e888
commit ddeed6873e
6 changed files with 21 additions and 21 deletions

View file

@ -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,