mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-30 08:09:04 +00:00
* lisp/subr.el (while-let): Use if-let, not if-let* (bug#60758).
This commit is contained in:
parent
9ecebcdded
commit
083badc9c1
@ -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))))))
|
||||
|
Loading…
Reference in New Issue
Block a user