mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-23 08:20:41 -08:00
Fix recent commit
This commit is contained in:
parent
81d93952af
commit
7e854d0203
1 changed files with 1 additions and 3 deletions
|
|
@ -1824,9 +1824,6 @@ ones. PREFIX is for internal use and should not be used."
|
|||
(setq bindings
|
||||
(append bindings
|
||||
(which-key--get-keymap-bindings def t key))))
|
||||
((and def (consp def))
|
||||
(cl-pushnew (cons key-desc (car def))
|
||||
bindings :test (lambda (a b) (string= (car a) (car b)))))
|
||||
(t
|
||||
(when def
|
||||
(cl-pushnew
|
||||
|
|
@ -1838,6 +1835,7 @@ ones. PREFIX is for internal use and should not be used."
|
|||
((eq 'menu-item (car-safe def)) "menu-item")
|
||||
((stringp def) def)
|
||||
((vectorp def) (key-description def))
|
||||
((consp def) (car def))
|
||||
(t "unknown")))
|
||||
bindings :test (lambda (a b) (string= (car a) (car b)))))))))
|
||||
keymap)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue