* lisp/help-mode.el (help-mode-tool-bar-map): Fix tooltips.

This commit is contained in:
Stefan Kangas 2021-03-08 04:23:11 +01:00
parent 4a112fd7a6
commit 570afde376

View file

@ -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