util-src/encodings.c
changeset 6792 6b180e77c97a
parent 6646 127b9f0c6135
child 7821 54669df178c2
--- a/util-src/encodings.c	Wed Apr 08 00:45:26 2015 +0200
+++ b/util-src/encodings.c	Sun Apr 26 12:38:37 2015 +0200
@@ -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 @@
 	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");