diff options
| -rw-r--r-- | lisp/bindings.el | 11 |
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. |
| 55 | Normally it displays current input method (if any activated) and | ||
| 56 | mnemonics 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 | ||