# HG changeset patch # User Kim Alvefur # Date 1591288607 -7200 # Node ID 3af3354366ebea0d0a02cd566d52b387ad05a047 # Parent 18dc4639442eba80aeb86f6e4f35e91346e76197 util.human.io: Use literal ellipsis instead of \u escape For compat with Lua 5.2 and before diff -r 18dc4639442e -r 3af3354366eb util/human/io.lua --- a/util/human/io.lua Thu Jun 04 18:32:33 2020 +0200 +++ b/util/human/io.lua Thu Jun 04 18:36:47 2020 +0200 @@ -136,7 +136,7 @@ v = padright(v, width); end elseif #v > width then - v = v:sub(1, width-1) .. "\u{2026}"; + v = v:sub(1, width-1) .. "…"; end table.insert(output, v); end