mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util-src/*.c: Use the more concise lua_setfield
This commit is contained in:
parent
c57e98cd7d
commit
4f6f0fe480
4 changed files with 7 additions and 13 deletions
|
@ -83,8 +83,7 @@ static const luaL_Reg Reg[] =
|
|||
LUALIB_API int luaopen_util_windows(lua_State *L) {
|
||||
lua_newtable(L);
|
||||
luaL_register(L, NULL, Reg);
|
||||
lua_pushliteral(L, "version"); /** version */
|
||||
lua_pushliteral(L, "-3.14");
|
||||
lua_settable(L,-3);
|
||||
lua_setfield(L, -2, "version");
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue