]> git.eshelyaron.com Git - emacs.git/commitdiff
Revert "* lisp/subr.el (while-let): Use if-let, not if-let* (bug#60758)."
authorSean Whitton <spwhitton@spwhitton.name>
Sun, 15 Jan 2023 16:57:41 +0000 (09:57 -0700)
committerSean Whitton <spwhitton@spwhitton.name>
Sun, 15 Jan 2023 16:57:41 +0000 (09:57 -0700)
This reverts commit 083badc9c122a802080552e7771e78ee47c01e3c.

lisp/subr.el

index ab451b5613b9098b21e74035c9dbad6a6141ea35..34dd847e9d59dcb5dffa236aa9c19ded355a3497 100644 (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))))))