]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/subr.el (while-let): Use if-let, not if-let* (bug#60758).
authorSean Whitton <spwhitton@spwhitton.name>
Fri, 13 Jan 2023 00:09:01 +0000 (17:09 -0700)
committerSean Whitton <spwhitton@spwhitton.name>
Fri, 13 Jan 2023 00:09:01 +0000 (17:09 -0700)
lisp/subr.el

index 62f72734e1463281e6a9ddc5210a75c87daca235..485ca9e4f1b0c5394eb58c52c9e367ea72278006 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))))))