aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Bryant2024-03-09 22:08:57 +0000
committerJustin Burkett2024-03-12 16:32:33 -0400
commitaf8a760ad2d54bd1f1513804e67a59ac03cd1eb5 (patch)
treeceac6b895819759cce6ffe8edd68b0345e4d1dd1
parent61f6c3ed721017e28ed2e80e1ebebf5d8fc0c3d5 (diff)
downloademacs-af8a760ad2d54bd1f1513804e67a59ac03cd1eb5.tar.gz
emacs-af8a760ad2d54bd1f1513804e67a59ac03cd1eb5.zip
; * which-key.el (which-key--get-keymap-bindings-1): Use eql.
-rw-r--r--which-key.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/which-key.el b/which-key.el
index 54ec92d2311..dcb5af7ce7d 100644
--- a/which-key.el
+++ b/which-key.el
@@ -1886,7 +1886,7 @@ Requires `which-key-compute-remaps' to be non-nil."
1886 (or all 1886 (or all
1887 ;; event 27 is escape, so this will pick up meta 1887 ;; event 27 is escape, so this will pick up meta
1888 ;; bindings and hopefully not too much more 1888 ;; bindings and hopefully not too much more
1889 (and (numberp ev) (= ev 27)))) 1889 (eql ev 27)))
1890 (setq bindings 1890 (setq bindings
1891 (which-key--get-keymap-bindings-1 1891 (which-key--get-keymap-bindings-1
1892 keymap bindings key nil all ignore-commands))) 1892 keymap bindings key nil all ignore-commands)))