]> git.eshelyaron.com Git - emacs.git/commitdiff
; fix misplaced bracketing of `and` inside `when`
authorMattias Engdegård <mattiase@acm.org>
Fri, 30 Dec 2022 10:30:23 +0000 (11:30 +0100)
committerMattias Engdegård <mattiase@acm.org>
Fri, 30 Dec 2022 10:30:23 +0000 (11:30 +0100)
lisp/help-fns.el

index e29f763dabc795f40fdc0508a6010b5cc653327f..3307771ef68cc475d4172e06f325e1075ec0e1d2 100644 (file)
@@ -2004,8 +2004,8 @@ variable with value KEYMAP."
                   (mapatoms (lambda (symb)
                               (when (and (boundp symb)
                                          (eq (symbol-value symb) keymap)
-                                         (not (eq symb 'keymap))
-                                         (throw 'found-keymap symb)))))
+                                         (not (eq symb 'keymap)))
+                                (throw 'found-keymap symb))))
                   nil)))
       ;; Follow aliasing.
       (or (ignore-errors (indirect-variable name)) name))))