From: Eli Zaretskii Date: Mon, 6 Dec 2021 17:36:07 +0000 (+0200) Subject: Fix mode-line display on TTY frames X-Git-Tag: emacs-29.0.90~3611^2~8 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=aa63064fec4b94bbe090ea17965062bfc11ee944;p=emacs.git Fix mode-line display on TTY frames * lisp/bindings.el (mode-line-frame-control): Remove the leading '-' before '%F' on TTY frames. It has no real purpose, and looks ugly nowadays, since it's preceded by a blank, due to the new min-width feature. --- diff --git a/lisp/bindings.el b/lisp/bindings.el index 8a850752fa4..98a12a252ad 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -288,7 +288,7 @@ mnemonics of the following coding systems: Value is used for `mode-line-frame-identification', which see." (if (or (null window-system) (eq window-system 'pc)) - "-%F " + " %F " " ")) ;; We need to defer the call to mode-line-frame-control to the time