Skip to content
This repository has been archived by the owner on Jun 25, 2024. It is now read-only.

Commit

Permalink
; * which-key.el (which-key--get-keymap-bindings-1): Use eql.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-bryant authored and justbur committed Mar 12, 2024
1 parent 61f6c3e commit af8a760
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion which-key.el
Original file line number Diff line number Diff line change
Expand Up @@ -1886,7 +1886,7 @@ Requires `which-key-compute-remaps' to be non-nil."
(or all
;; event 27 is escape, so this will pick up meta
;; bindings and hopefully not too much more
(and (numberp ev) (= ev 27))))
(eql ev 27)))
(setq bindings
(which-key--get-keymap-bindings-1
keymap bindings key nil all ignore-commands)))
Expand Down

0 comments on commit af8a760

Please sign in to comment.