Skip to content

Commit 739e57d

Browse files
committed
lua 5.3 fix
1 parent 3c0dc8f commit 739e57d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

paths.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1002,7 +1002,7 @@ static int readable (const char *filename)
10021002
return 1;
10031003
}
10041004

1005-
#if LUA_VERSION_NUM == 502 /* LUA52 compatibility defs */
1005+
#if LUA_VERSION_NUM >= 502 /* LUA52 compatibility defs */
10061006
#define LUA_PATHSEP ";"
10071007
#define PATHS_LUA_CLEANUP_DEFS 1
10081008
#endif

0 commit comments

Comments
 (0)