diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/battery.el | 4 | ||||
-rw-r--r-- | lisp/bindings.el | 2 | ||||
-rw-r--r-- | lisp/time.el | 3 |
3 files changed, 5 insertions, 4 deletions
diff --git a/lisp/battery.el b/lisp/battery.el index 59f6987ad16..bf864c2bd4a 100644 --- a/lisp/battery.el +++ b/lisp/battery.el @@ -161,9 +161,9 @@ The full `format-spec' formatting syntax is supported." (defcustom battery-mode-line-format (cond ((eq battery-status-function #'battery-linux-proc-acpi) - "[%b%p%%,%d°C]") + "[%b%p%%,%d°C] ") (battery-status-function - "[%b%p%%]")) + "[%b%p%%] ")) "Control string formatting the string to display in the mode line. Ordinary characters in the control string are printed as-is, while conversion specifications introduced by a `%' character in the control diff --git a/lisp/bindings.el b/lisp/bindings.el index 06ba5d06e72..4b194c0c015 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -580,7 +580,7 @@ Major modes that edit things other than ordinary files may change this (put 'mode-line-buffer-identification 'risky-local-variable t) (defvar mode-line-misc-info - '((global-mode-string ("" global-mode-string " "))) + '((global-mode-string ("" global-mode-string))) "Mode line construct for miscellaneous information. By default, this shows the information specified by `global-mode-string'.") (put 'mode-line-misc-info 'risky-local-variable t) diff --git a/lisp/time.el b/lisp/time.el index fd53f634c69..9f25f99a149 100644 --- a/lisp/time.el +++ b/lisp/time.el @@ -205,7 +205,8 @@ depend on `display-time-day-and-date' and `display-time-24hr-format'." 'mouse-face 'mode-line-highlight 'local-map (make-mode-line-mouse-map 'mouse-2 read-mail-command))) - "")) + "") + " ") "List of expressions governing display of the time in the mode line. For most purposes, you can control the time format using `display-time-format' which is a more standard interface. |