summaryrefslogtreecommitdiff
path: root/lisp/bindings.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2021-12-06 19:36:07 +0200
committerEli Zaretskii <eliz@gnu.org>2021-12-06 19:36:07 +0200
commitaa63064fec4b94bbe090ea17965062bfc11ee944 (patch)
tree6888fdce392c08ee09fec60cd986072ae91c8e22 /lisp/bindings.el
parentc9e901f4a612646be4ce06e1619897edfb073bf0 (diff)
downloademacs-aa63064fec4b94bbe090ea17965062bfc11ee944.tar.gz
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.
Diffstat (limited to 'lisp/bindings.el')
-rw-r--r--lisp/bindings.el2
1 files changed, 1 insertions, 1 deletions
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