mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 01:34:21 +00:00
Fix another help-fns--insert-menu-bindings parsing problem
* lisp/help-fns.el (help-fns--insert-menu-bindings): Fix keymap traversal when elements are symbols.
This commit is contained in:
parent
3ba039dc96
commit
c7d49f91da
1 changed files with 2 additions and 0 deletions
|
|
@ -592,6 +592,8 @@ the C sources, too."
|
|||
(start (point)))
|
||||
(seq-do-indexed
|
||||
(lambda (entry level)
|
||||
(when (symbolp map)
|
||||
(setq map (symbol-function map)))
|
||||
(when-let ((elem (assq entry (cdr map))))
|
||||
(when heading
|
||||
(insert heading)
|
||||
|
|
|
|||
Loading…
Reference in a new issue