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 | 71e99a2fcbc3999139f068ee79cbde13876f1e5f (patch) | |
tree | c3437058dd976bc7a7fb872cc46acef05f992dde /lisp/bindings.el | |
parent | b48382a0467aeca02907347d0287639e93fefa95 (diff) | |
download | emacs-71e99a2fcbc3999139f068ee79cbde13876f1e5f.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) |