mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-26 10:49:33 +00:00
(mode-line-mule-info): In computing help-echo prop,
avoid using save-window-excursion. And compile the function.
This commit is contained in:
parent
2c3d8820e2
commit
7e98f74cdf
@ -149,18 +149,16 @@ corresponding to the mode line clicked."
|
||||
,(propertize
|
||||
"%Z"
|
||||
'help-echo
|
||||
(purecopy (lambda (window object point)
|
||||
(save-window-excursion
|
||||
(select-window window)
|
||||
;; Don't show this tip if the coding system is nil,
|
||||
;; it reads like a bug, and is not useful anyway.
|
||||
(when buffer-file-coding-system
|
||||
(if enable-multibyte-characters
|
||||
(concat (symbol-name buffer-file-coding-system)
|
||||
" buffer; mouse-3: describe coding system")
|
||||
(concat "Unibyte "
|
||||
(symbol-name buffer-file-coding-system)
|
||||
" buffer"))))))
|
||||
#'(lambda (window object point)
|
||||
(with-current-buffer (window-buffer window)
|
||||
;; Don't show this tip if the coding system is nil,
|
||||
;; it reads like a bug, and is not useful anyway.
|
||||
(when buffer-file-coding-system
|
||||
(if enable-multibyte-characters
|
||||
(concat (symbol-name buffer-file-coding-system)
|
||||
" buffer; mouse-3: describe coding system")
|
||||
(concat "Unibyte " (symbol-name buffer-file-coding-system)
|
||||
" buffer")))))
|
||||
'local-map mode-line-coding-system-map))
|
||||
"Mode-line control for displaying information of multilingual environment.
|
||||
Normally it displays current input method (if any activated) and
|
||||
|
Loading…
Reference in New Issue
Block a user