Revert "* lisp/subr.el (while-let): Use if-let, not if-let* (bug#60758)."

This reverts commit 083badc9c1.
This commit is contained in:
Sean Whitton 2023-01-15 09:57:41 -07:00
parent c8d5480972
commit f16bd1ead4

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