Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions c-api/compat-5.3.h
Original file line number Diff line number Diff line change
Expand Up @@ -396,11 +396,11 @@ COMPAT53_API void luaL_requiref (lua_State *L, const char *modname,


/* other Lua versions */
#if !defined(LUA_VERSION_NUM) || LUA_VERSION_NUM < 501 || LUA_VERSION_NUM > 504
#if !defined(LUA_VERSION_NUM) || LUA_VERSION_NUM < 501 || LUA_VERSION_NUM > 505

# error "unsupported Lua version (i.e. not Lua 5.1, 5.2, 5.3, or 5.4)"
# error "unsupported Lua version (i.e. not Lua 5.1, 5.2, 5.3, 5.4 or 5.5)"

#endif /* other Lua versions except 5.1, 5.2, 5.3, and 5.4 */
#endif /* other Lua versions except 5.1, 5.2, 5.3, 5.4, and 5.5 */



Expand Down
4 changes: 2 additions & 2 deletions rockspecs/bit32-5.3.5.1-1.rockspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ description = {
summary = "Lua 5.2 bit manipulation library",
detailed = [[
bit32 is the native Lua 5.2 bit manipulation library, in the version
from Lua 5.3; it is compatible with Lua 5.1, 5.2, 5.3 and 5.4.
from Lua 5.3; it is compatible with Lua 5.1, 5.2, 5.3, 5.4 and 5.5.
]],
homepage = "http://www.lua.org/manual/5.2/manual.html#6.7",
license = "MIT"
}
dependencies = {
"lua >= 5.1, < 5.5"
"lua >= 5.1, < 5.6"
}
build = {
type = "builtin",
Expand Down