projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c34230f
)
; fix misplaced bracketing of `and` inside `when`
author
Mattias Engdegård
<mattiase@acm.org>
Fri, 30 Dec 2022 10:30:23 +0000
(11:30 +0100)
committer
Mattias Engdegård
<mattiase@acm.org>
Fri, 30 Dec 2022 10:30:23 +0000
(11:30 +0100)
lisp/help-fns.el
patch
|
blob
|
history
diff --git
a/lisp/help-fns.el
b/lisp/help-fns.el
index e29f763dabc795f40fdc0508a6010b5cc653327f..3307771ef68cc475d4172e06f325e1075ec0e1d2 100644
(file)
--- 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))))