mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.human.io: Use UTF-8-aware length check in padding functions
This commit is contained in:
parent
d1144a7ede
commit
d6b3625be2
1 changed files with 2 additions and 2 deletions
|
@ -93,11 +93,11 @@ local function printf(fmt, ...)
|
|||
end
|
||||
|
||||
local function padright(s, width)
|
||||
return s..string.rep(" ", width-#s);
|
||||
return s..string.rep(" ", width-len(s));
|
||||
end
|
||||
|
||||
local function padleft(s, width)
|
||||
return string.rep(" ", width-#s)..s;
|
||||
return string.rep(" ", width-len(s))..s;
|
||||
end
|
||||
|
||||
local pat = "[%z\001-\127\194-\253][\128-\191]*";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue