Make first mode-line dash an empty space on graphical terminals (Bug#7295).
* lisp/bindings.el (help-echo): Make the initial non-indicator dash empty on graphical terminals.
This commit is contained in:
parent
fbeba6e230
commit
8e6ca83dfe
2 changed files with 6 additions and 1 deletions
|
@ -12,6 +12,9 @@
|
|||
|
||||
2011-05-28 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* bindings.el (help-echo): Make the initial non-indicator dash
|
||||
empty on graphical terminals (Bug#7295).
|
||||
|
||||
* files.el (auto-mode-alist): Move config rule after the
|
||||
in-stripping one (Bug#8547).
|
||||
|
||||
|
|
|
@ -321,7 +321,9 @@ mouse-3: Remove current window from display")
|
|||
(standard-mode-line-format
|
||||
(list
|
||||
"%e"
|
||||
(propertize "-" 'help-echo help-echo)
|
||||
`(:eval (if (display-graphic-p)
|
||||
,(propertize " " 'help-echo help-echo)
|
||||
,(propertize "-" 'help-echo help-echo)))
|
||||
'mode-line-mule-info
|
||||
'mode-line-client
|
||||
'mode-line-modified
|
||||
|
|
Loading…
Add table
Reference in a new issue