emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 7493b4026f 2/2: ; fix misplaced bracketing of `and` inside `when`


From: Mattias Engdegård
Subject: master 7493b4026f 2/2: ; fix misplaced bracketing of `and` inside `when`
Date: Fri, 30 Dec 2022 05:32:05 -0500 (EST)

branch: master
commit 7493b4026fc74a51c76c5b614bc83b864af9bc31
Author: Mattias Engdegård <mattiase@acm.org>
Commit: Mattias Engdegård <mattiase@acm.org>

    ; fix misplaced bracketing of `and` inside `when`
---
 lisp/help-fns.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/help-fns.el b/lisp/help-fns.el
index e29f763dab..3307771ef6 100644
--- a/lisp/help-fns.el
+++ b/lisp/help-fns.el
@@ -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))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]