util.gc: Fix check for Lua 5.4

This commit is contained in:
Kim Alvefur 2021-03-16 00:04:26 +01:00
parent 409c611a37
commit 21dfac68ed

View file

@ -5,7 +5,7 @@ local known_options = {
generational = set.new { "mode", "minor_threshold", "major_threshold" };
};
if _VERSION ~= "5.4" then
if _VERSION ~= "Lua 5.4" then
known_options.generational = nil;
known_options.incremental:remove("step_size");
end