summaryrefslogtreecommitdiff
path: root/lisp/help-fns.el
diff options
context:
space:
mode:
authorMattias EngdegÄrd <mattiase@acm.org>2022-12-30 11:30:23 +0100
committerMattias EngdegÄrd <mattiase@acm.org>2022-12-30 11:30:23 +0100
commit7493b4026fc74a51c76c5b614bc83b864af9bc31 (patch)
tree78d218712182aa0341b8448e289b5385681fbd93 /lisp/help-fns.el
parentc34230f12aa966df091dd7b3cb2e32ce43ad811d (diff)
downloademacs-7493b4026fc74a51c76c5b614bc83b864af9bc31.tar.gz
; fix misplaced bracketing of `and` inside `when`
Diffstat (limited to 'lisp/help-fns.el')
-rw-r--r--lisp/help-fns.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/help-fns.el b/lisp/help-fns.el
index e29f763dabc..3307771ef68 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))))