mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-25 14:13:37 -05:00
fix(cli): split tput call into two separate calls
This fixes an issue where, on some systems, `tput cols lines` does not produce "N\nM" (where N = number of columns in the terminal and M = number of lines), and instead produces "N\n", causing parsing errors.
This commit is contained in:
@@ -578,7 +578,7 @@ Throws `doom-cli-invalid-option-error' for illegal values."
|
||||
;; The geometry of the terminal window.
|
||||
(geometry (when-let* ((geom (getenv "__DOOMGEOM"))
|
||||
((not (string-blank-p geom)))
|
||||
(geom (split-string geom "\n")))
|
||||
(geom (split-string geom "x")))
|
||||
(cons (string-to-number (car geom))
|
||||
(string-to-number (cadr geom)))))
|
||||
;; Whether the script is being piped into or out of
|
||||
|
Reference in New Issue
Block a user