util-src/*.c: Don't create globals when loaded

This commit is contained in:
Kim Alvefur 2014-09-16 21:56:18 +02:00
parent a685dfb89e
commit c57e98cd7d
6 changed files with 11 additions and 11 deletions

View file

@ -361,17 +361,12 @@ static const luaL_Reg Reg_idna[] =
/***************** end *****************/
static const luaL_Reg Reg[] =
{
{ NULL, NULL }
};
LUALIB_API int luaopen_util_encodings(lua_State *L)
{
#ifdef USE_STRINGPREP_ICU
init_icu();
#endif
luaL_register(L, "encodings", Reg);
lua_newtable(L);
lua_pushliteral(L, "base64");
lua_newtable(L);

View file

@ -203,7 +203,8 @@ static const luaL_Reg Reg[] =
LUALIB_API int luaopen_util_hashes(lua_State *L)
{
luaL_register(L, "hashes", Reg);
lua_newtable(L);
luaL_register(L, NULL, Reg);
lua_pushliteral(L, "version"); /** version */
lua_pushliteral(L, "-3.14");
lua_settable(L,-3);

View file

@ -112,6 +112,7 @@ int luaopen_util_net(lua_State* L)
{ NULL, NULL }
};
luaL_register(L, "net", exports);
lua_newtable(L);
luaL_register(L, NULL, exports);
return 1;
}

View file

@ -768,7 +768,8 @@ int luaopen_util_pposix(lua_State *L)
{ NULL, NULL }
};
luaL_register(L, "pposix", exports);
lua_newtable(L);
luaL_register(L, NULL, exports);
lua_pushliteral(L, "pposix");
lua_setfield(L, -2, "_NAME");

View file

@ -384,7 +384,8 @@ int luaopen_util_signal(lua_State *L)
int i = 0;
/* add the library */
luaL_register(L, "signal", lsignal_lib);
lua_newtable(L);
luaL_register(L, NULL, lsignal_lib);
/* push lua_signals table into the registry */
/* put the signals inside the library table too,

View file

@ -81,7 +81,8 @@ static const luaL_Reg Reg[] =
};
LUALIB_API int luaopen_util_windows(lua_State *L) {
luaL_register(L, "windows", Reg);
lua_newtable(L);
luaL_register(L, NULL, Reg);
lua_pushliteral(L, "version"); /** version */
lua_pushliteral(L, "-3.14");
lua_settable(L,-3);