aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--util/human/io.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/human/io.lua b/util/human/io.lua
index 389ed25a..8d987355 100644
--- a/util/human/io.lua
+++ b/util/human/io.lua
@@ -136,7 +136,7 @@ local function new_table(col_specs, max_width)
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