mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-19 22:06:40 +00:00
2c167153e9
Fixes an issue on macOS Mojave that was patched in fa1c281e79.
The list of changes can be found under
build/premake/premake5/CHANGES.txt.
This was SVN commit r22021.
12 lines
233 B
Lua
12 lines
233 B
Lua
function filter.cycle(lowlevel, context, extra)
|
|
return function(chunk)
|
|
local ret
|
|
ret, context = lowlevel(context, chunk, extra)
|
|
return ret
|
|
end
|
|
end
|
|
|
|
function normalize(marker)
|
|
return filter.cycle(eol, 0, marker)
|
|
end
|