diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-05-21 05:06:23 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-05-21 05:06:23 +0000 |
commit | ba249623fe07ed5cc7b998661c63a37b83216fad (patch) | |
tree | 38294d560d0cf26465b875afd3f7b87b7c4df52e /lisp/bindings.el | |
parent | 9023765d4e4ea81dd25ef58888d2ada1187fffec (diff) | |
download | emacs-ba249623fe07ed5cc7b998661c63a37b83216fad.tar.gz |
(mode-line-mule-info): Add a colon.
(mode-line-modified): Delete the initial dash.
Diffstat (limited to 'lisp/bindings.el')
-rw-r--r-- | lisp/bindings.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el index 203f65436b6..a65054bb945 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -50,7 +50,7 @@ (defconst mode-line-mule-info (purecopy '(enable-multibyte-characters ((current-input-method ("[" current-input-method-title "]")) - "%z"))) + "%z:"))) "Mode-line control for displaying information of multilingual environment.") (make-variable-buffer-local 'mode-line-mule-info) @@ -71,7 +71,7 @@ Normally nil in most modes, since there is no process to display.") (make-variable-buffer-local 'mode-line-process) -(defvar mode-line-modified (purecopy '("-%1*%1+")) +(defvar mode-line-modified (purecopy '("%1*%1+")) "Mode-line control for displaying whether current buffer is modified.") (make-variable-buffer-local 'mode-line-modified) |