mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.human.io: Coerce $COLUMNS to number
os.getenv() returns a string but term_width() should return a number
This commit is contained in:
parent
4725a96218
commit
d458a42c61
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ if utf8.len and utf8.offset then
|
|||
end
|
||||
|
||||
local function term_width(default)
|
||||
local env_cols = os.getenv "COLUMNS";
|
||||
local env_cols = tonumber(os.getenv "COLUMNS");
|
||||
if env_cols then return env_cols; end
|
||||
local stty = io.popen("stty -a");
|
||||
if not stty then return default; end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue