diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-03-08 04:23:11 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-03-08 04:23:11 +0100 |
commit | 570afde3765732b6705ba447adfc4c36fa6e9a0c (patch) | |
tree | d478460981f96eb058173a7b89cedc2ca750265b /lisp | |
parent | 4a112fd7a6f0dcbd1b99b811b324123f5699bdfb (diff) | |
download | emacs-570afde3765732b6705ba447adfc4c36fa6e9a0c.tar.gz emacs-570afde3765732b6705ba447adfc4c36fa6e9a0c.tar.bz2 emacs-570afde3765732b6705ba447adfc4c36fa6e9a0c.zip |
* lisp/help-mode.el (help-mode-tool-bar-map): Fix tooltips.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/help-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/help-mode.el b/lisp/help-mode.el index e6a5fe8a80e..c7eaae5feb4 100644 --- a/lisp/help-mode.el +++ b/lisp/help-mode.el @@ -66,11 +66,11 @@ (defvar help-mode-tool-bar-map (let ((map (make-sparse-keymap))) (tool-bar-local-item "close" 'quit-window 'quit map - :label "Quit help." + :help "Quit help" :vert-only t) (define-key-after map [separator-1] menu-bar-separator) (tool-bar-local-item "search" 'isearch-forward 'search map - :label "Search" :vert-only t) + :help "Search" :vert-only t) (tool-bar-local-item-from-menu 'help-go-back "left-arrow" map help-mode-map :rtl "right-arrow" :vert-only t) (tool-bar-local-item-from-menu 'help-go-forward "right-arrow" map help-mode-map |