Add -jp=fl mode and minor fixes.

This commit is contained in:
Mike Pall
2013-09-10 00:02:20 +02:00
parent 2befb8b1de
commit 29078518c1
3 changed files with 19 additions and 8 deletions

View File

@@ -35,7 +35,11 @@ return setmetatable({
end
}, {
__call = function(t, zone)
if zone then t[#t+1] = zone else return assert(remove(t)) end
if zone then
t[#t+1] = zone
else
return (assert(remove(t), "empty zone stack"))
end
end
})