1
0
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:
Sean Whitton 2023-01-12 17:09:01 -07:00
parent 9ecebcdded
commit 083badc9c1

View File

@ -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))))))