aboutsummaryrefslogtreecommitdiffstats
path: root/util-src/poll.c
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2022-07-01 21:21:21 +0200
committerKim Alvefur <zash@zash.se>2022-07-01 21:21:21 +0200
commitdff4beae0278ae5b98c52b7e1162ceb318236256 (patch)
tree39114742a01c88d240aaefd0d9b484a1581ef459 /util-src/poll.c
parent2ec8fbe7e5f571727a14205a7389f6528112a133 (diff)
downloadprosody-dff4beae0278ae5b98c52b7e1162ceb318236256.tar.gz
prosody-dff4beae0278ae5b98c52b7e1162ceb318236256.zip
util-src: Remove Lua 5.1 compat macros
Part of #1600
Diffstat (limited to 'util-src/poll.c')
-rw-r--r--util-src/poll.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/util-src/poll.c b/util-src/poll.c
index 81caa953..d7c1f9e1 100644
--- a/util-src/poll.c
+++ b/util-src/poll.c
@@ -44,9 +44,6 @@
#define STATE_MT "util.poll<" POLL_BACKEND ">"
-#if (LUA_VERSION_NUM == 501)
-#define luaL_setmetatable(L, tname) luaL_getmetatable(L, tname); lua_setmetatable(L, -2)
-#endif
#if (LUA_VERSION_NUM < 504)
#define luaL_pushfail lua_pushnil
#endif
@@ -564,9 +561,7 @@ static int Lnew(lua_State *L) {
* Open library
*/
int luaopen_util_poll(lua_State *L) {
-#if (LUA_VERSION_NUM > 501)
luaL_checkversion(L);
-#endif
luaL_newmetatable(L, STATE_MT);
{