projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c8d5480
)
Revert "* lisp/subr.el (while-let): Use if-let, not if-let* (bug#60758)."
author
Sean Whitton
<spwhitton@spwhitton.name>
Sun, 15 Jan 2023 16:57:41 +0000
(09:57 -0700)
committer
Sean Whitton
<spwhitton@spwhitton.name>
Sun, 15 Jan 2023 16:57:41 +0000
(09:57 -0700)
This reverts commit
083badc9c122a802080552e7771e78ee47c01e3c
.
lisp/subr.el
patch
|
blob
|
history
diff --git
a/lisp/subr.el
b/lisp/subr.el
index ab451b5613b9098b21e74035c9dbad6a6141ea35..34dd847e9d59dcb5dffa236aa9c19ded355a3497 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))))))