diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-09-23 23:38:21 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-09-23 23:38:21 +0200 |
commit | 6ff8c47cf02573fe05127e03dfae44fe2eb69db8 (patch) | |
tree | 24d7741052876c0da9f1767335771037d17dcd7f /lisp | |
parent | 794c5a0ba773508cd643e577b6718ec5271c7e55 (diff) | |
download | emacs-6ff8c47cf02573fe05127e03dfae44fe2eb69db8.tar.gz emacs-6ff8c47cf02573fe05127e03dfae44fe2eb69db8.tar.bz2 emacs-6ff8c47cf02573fe05127e03dfae44fe2eb69db8.zip |
Add `info-lookup-symbol' to the menu
* lisp/menu-bar.el (menu-bar-search-documentation-menu): Add entry
for `info-lookup-symbol' (bug#50759).
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/menu-bar.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index e84eec5002c..ede81867825 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el @@ -1960,6 +1960,9 @@ key, a click, or a menu-item")) :help "Find commands whose names match a regexp")) (bindings--define-key menu [sep1] menu-bar-separator) + (bindings--define-key menu [lookup-symbol-in-manual] + '(menu-item "Look Up Symbol in Manual..." info-lookup-symbol + :help "Display manual section that describes a symbol")) (bindings--define-key menu [lookup-command-in-manual] '(menu-item "Look Up Command in User Manual..." Info-goto-emacs-command-node :help "Display manual section that describes a command")) |