diff options
author | Kim Alvefur <zash@zash.se> | 2014-09-17 02:23:17 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-09-17 02:23:17 +0200 |
commit | 4f6f0fe48047cf1832061f52aa96b9df5d9460fa (patch) | |
tree | cc0d784c48dd70d272897cbf4cc39ceed6c3479e /util-src/encodings.c | |
parent | c57e98cd7debd8d8ea46159cbbf2eb7597544d4c (diff) | |
download | prosody-4f6f0fe48047cf1832061f52aa96b9df5d9460fa.tar.gz prosody-4f6f0fe48047cf1832061f52aa96b9df5d9460fa.zip |
util-src/*.c: Use the more concise lua_setfield
Diffstat (limited to 'util-src/encodings.c')
-rw-r--r-- | util-src/encodings.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/util-src/encodings.c b/util-src/encodings.c index 3a074949..fb838551 100644 --- a/util-src/encodings.c +++ b/util-src/encodings.c @@ -368,23 +368,19 @@ LUALIB_API int luaopen_util_encodings(lua_State *L) #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; } |