aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa1997-06-18 12:55:15 +0000
committerKenichi Handa1997-06-18 12:55:15 +0000
commit44c034c1187a2a818c623063dd359bed4a935e8d (patch)
tree6612f8672c0df54e8e16dbcaa82da7a02bbd0567
parent2792ce1648a24401678c4d7d15b8948bcf076689 (diff)
downloademacs-44c034c1187a2a818c623063dd359bed4a935e8d.tar.gz
emacs-44c034c1187a2a818c623063dd359bed4a935e8d.zip
(mode-line-mule-info): Change style for showing
an activated input method.
-rw-r--r--lisp/bindings.el11
1 files changed, 9 insertions, 2 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el
index 795ae4c409b..9e9193ae58e 100644
--- a/lisp/bindings.el
+++ b/lisp/bindings.el
@@ -49,9 +49,16 @@
49 49
50(defconst mode-line-mule-info 50(defconst mode-line-mule-info
51 (purecopy '(enable-multibyte-characters 51 (purecopy '(enable-multibyte-characters
52 ((current-input-method ("[" current-input-method-title "]")) 52 ((current-input-method ("" current-input-method-title ">"))
53 "%z:"))) 53 "%z:")))
54 "Mode-line control for displaying information of multilingual environment.") 54 "Mode-line control for displaying information of multilingual environment.
55Normally it displays current input method (if any activated) and
56mnemonics of the following coding systems:
57 coding system for saving or writing the current buffer
58 coding system for keyboard input (if Emacs is running on terminal)
59 coding system for terminal output (if Emacs is running on terminal)
60 coding system for decoding output of buffer process (if any)
61 coding system for encoding text to send to buffer process (if any).")
55 62
56(make-variable-buffer-local 'mode-line-mule-info) 63(make-variable-buffer-local 'mode-line-mule-info)
57 64