util.human.io: Fix error with ellipsis to negative length

Can happen if you resize the terminal too narrow that the space left for
variable width columns end up negative.
This commit is contained in:
Kim Alvefur 2023-04-09 01:34:08 +02:00
parent 3d4d094026
commit 7100d58828

View file

@ -123,7 +123,7 @@ end
local function ellipsis(s, width)
if len(s) <= width then return s; end
if width == 1 then return ""; end
if width <= 1 then return ""; end
return utf8_cut(s, width - 1) .. "";
end