From: Sean Whitton Date: Fri, 13 Jan 2023 00:09:01 +0000 (-0700) Subject: * lisp/subr.el (while-let): Use if-let, not if-let* (bug#60758). X-Git-Tag: emacs-29.0.90~756 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=083badc9c122a802080552e7771e78ee47c01e3c;p=emacs.git * lisp/subr.el (while-let): Use if-let, not if-let* (bug#60758). --- diff --git a/lisp/subr.el b/lisp/subr.el index 62f72734e14..485ca9e4f1b 100644 --- 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))))))