diff options
author | Kim Alvefur <zash@zash.se> | 2015-04-26 12:38:37 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2015-04-26 12:38:37 +0200 |
commit | 85a8a667444d69fcf5e3cfaf0071641e50b73f2b (patch) | |
tree | 48f9ee8f36121df679a3ab395e433e2a8b994c3d /util-src/encodings.c | |
parent | adb484391f938794a0d9a7913a50d88d5d2030ff (diff) | |
download | prosody-85a8a667444d69fcf5e3cfaf0071641e50b73f2b.tar.gz prosody-85a8a667444d69fcf5e3cfaf0071641e50b73f2b.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/encodings.c')
-rw-r--r-- | util-src/encodings.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/util-src/encodings.c b/util-src/encodings.c index c00b2267..35677095 100644 --- a/util-src/encodings.c +++ b/util-src/encodings.c @@ -21,8 +21,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 /***************** BASE64 *****************/ @@ -530,19 +530,19 @@ LUALIB_API int luaopen_util_encodings(lua_State* L) { lua_newtable(L); lua_newtable(L); - luaL_register(L, NULL, Reg_base64); + luaL_setfuncs(L, Reg_base64, 0); lua_setfield(L, -2, "base64"); lua_newtable(L); - luaL_register(L, NULL, Reg_stringprep); + luaL_setfuncs(L, Reg_stringprep, 0); lua_setfield(L, -2, "stringprep"); lua_newtable(L); - luaL_register(L, NULL, Reg_idna); + luaL_setfuncs(L, Reg_idna, 0); lua_setfield(L, -2, "idna"); lua_newtable(L); - luaL_register(L, NULL, Reg_utf8); + luaL_setfuncs(L, Reg_utf8, 0); lua_setfield(L, -2, "utf8"); lua_pushliteral(L, "-3.14"); |