From aa63064fec4b94bbe090ea17965062bfc11ee944 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Mon, 6 Dec 2021 19:36:07 +0200 Subject: [PATCH] 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. --- lisp/bindings.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5