diff options
author | Philipp Janda <siffiejoe@gmx.net> | 2020-07-08 20:25:09 +0200 |
---|---|---|
committer | Philipp Janda <siffiejoe@gmx.net> | 2020-07-08 20:25:09 +0200 |
commit | 931652ad9ef34c99e53007de9f92bfd5a397a219 (patch) | |
tree | af2332578152b1ec65b3867e87c04ab2190734ad /c-api | |
parent | a1735f6e6bd17588fcaf98720f0548c4caa23b34 (diff) | |
download | lua-compat-5.3-931652ad9ef34c99e53007de9f92bfd5a397a219.tar.gz lua-compat-5.3-931652ad9ef34c99e53007de9f92bfd5a397a219.tar.bz2 lua-compat-5.3-931652ad9ef34c99e53007de9f92bfd5a397a219.zip |
Make it usable on Lua 5.4v0.8
Diffstat (limited to 'c-api')
-rw-r--r-- | c-api/compat-5.3.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/c-api/compat-5.3.h b/c-api/compat-5.3.h index 082a6a0..b730a4b 100644 --- a/c-api/compat-5.3.h +++ b/c-api/compat-5.3.h | |||
@@ -399,11 +399,11 @@ COMPAT53_API void luaL_requiref (lua_State *L, const char *modname, | |||
399 | 399 | ||
400 | 400 | ||
401 | /* other Lua versions */ | 401 | /* other Lua versions */ |
402 | #if !defined(LUA_VERSION_NUM) || LUA_VERSION_NUM < 501 || LUA_VERSION_NUM > 503 | 402 | #if !defined(LUA_VERSION_NUM) || LUA_VERSION_NUM < 501 || LUA_VERSION_NUM > 504 |
403 | 403 | ||
404 | # error "unsupported Lua version (i.e. not Lua 5.1, 5.2, or 5.3)" | 404 | # error "unsupported Lua version (i.e. not Lua 5.1, 5.2, 5.3, or 5.4)" |
405 | 405 | ||
406 | #endif /* other Lua versions except 5.1, 5.2, and 5.3 */ | 406 | #endif /* other Lua versions except 5.1, 5.2, 5.3, and 5.4 */ |
407 | 407 | ||
408 | 408 | ||
409 | 409 | ||