mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util-src/*.c: Don't create globals when loaded
This commit is contained in:
parent
a685dfb89e
commit
c57e98cd7d
6 changed files with 11 additions and 11 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue