util-src: Remove Lua 5.1 compat macros

Part of #1600
This commit is contained in:
Kim Alvefur 2022-07-01 21:21:21 +02:00
parent 2ec8fbe7e5
commit dff4beae02
12 changed files with 2 additions and 56 deletions

View file

@ -21,9 +21,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
@ -616,9 +613,7 @@ static const luaL_Reg Reg_idna[] = {
/***************** end *****************/
LUALIB_API int luaopen_util_encodings(lua_State *L) {
#if (LUA_VERSION_NUM > 501)
luaL_checkversion(L);
#endif
#ifdef USE_STRINGPREP_ICU
init_icu();
#endif