projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9ecebcd
)
* lisp/subr.el (while-let): Use if-let, not if-let* (bug#60758).
author
Sean Whitton
<spwhitton@spwhitton.name>
Fri, 13 Jan 2023 00:09:01 +0000
(17:09 -0700)
committer
Sean Whitton
<spwhitton@spwhitton.name>
Fri, 13 Jan 2023 00:09:01 +0000
(17:09 -0700)
lisp/subr.el
patch
|
blob
|
history
diff --git
a/lisp/subr.el
b/lisp/subr.el
index 62f72734e1463281e6a9ddc5210a75c87daca235..485ca9e4f1b0c5394eb58c52c9e367ea72278006 100644
(file)
--- a/
lisp/subr.el
+++ b/
lisp/subr.el
@@
-2545,7
+2545,7
@@
The variable list SPEC is the same as in `if-let'."
(let ((done (gensym "done")))
`(catch ',done
(while t
- (if-let
*
,spec
+ (if-let ,spec
(progn
,@body)
(throw ',done nil))))))