From dff4beae0278ae5b98c52b7e1162ceb318236256 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Fri, 1 Jul 2022 21:21:21 +0200 Subject: util-src: Remove Lua 5.1 compat macros Part of #1600 --- util-src/windows.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'util-src/windows.c') diff --git a/util-src/windows.c b/util-src/windows.c index 57af79d5..2adb85f5 100644 --- a/util-src/windows.c +++ b/util-src/windows.c @@ -19,9 +19,6 @@ #include "lua.h" #include "lauxlib.h" -#if (LUA_VERSION_NUM == 501) -#define luaL_setfuncs(L, R, N) luaL_register(L, NULL, R) -#endif #if (LUA_VERSION_NUM < 504) #define luaL_pushfail lua_pushnil #endif @@ -106,9 +103,7 @@ static const luaL_Reg Reg[] = { }; LUALIB_API int luaopen_util_windows(lua_State *L) { -#if (LUA_VERSION_NUM > 501) luaL_checkversion(L); -#endif lua_newtable(L); luaL_setfuncs(L, Reg, 0); lua_pushliteral(L, "-3.14"); -- cgit v1.2.3