Software /
code /
prosody
Diff
util-src/encodings.c @ 6412:0e94f89d0e62
util-src/*.c: Use the more concise lua_setfield
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 17 Sep 2014 02:23:17 +0200 |
parent | 6411:6c8f6364bc48 |
child | 6413:a552f4170aed |
line wrap: on
line diff
--- a/util-src/encodings.c Tue Sep 16 21:56:18 2014 +0200 +++ b/util-src/encodings.c Wed Sep 17 02:23:17 2014 +0200 @@ -368,23 +368,19 @@ #endif lua_newtable(L); - lua_pushliteral(L, "base64"); lua_newtable(L); luaL_register(L, NULL, Reg_base64); - lua_settable(L,-3); + lua_setfield(L, -2, "base64"); - lua_pushliteral(L, "stringprep"); lua_newtable(L); luaL_register(L, NULL, Reg_stringprep); - lua_settable(L,-3); + lua_setfield(L, -2, "stringprep"); - lua_pushliteral(L, "idna"); lua_newtable(L); luaL_register(L, NULL, Reg_idna); - lua_settable(L,-3); + lua_setfield(L, -2, "idna"); - lua_pushliteral(L, "version"); /** version */ lua_pushliteral(L, "-3.14"); - lua_settable(L,-3); + lua_setfield(L, -2, "version"); return 1; }