emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

emacs-29 083badc9c1: * lisp/subr.el (while-let): Use if-let, not if-let*


From: Sean Whitton
Subject: emacs-29 083badc9c1: * lisp/subr.el (while-let): Use if-let, not if-let* (bug#60758).
Date: Thu, 12 Jan 2023 19:37:32 -0500 (EST)

branch: emacs-29
commit 083badc9c122a802080552e7771e78ee47c01e3c
Author: Sean Whitton <spwhitton@spwhitton.name>
Commit: Sean Whitton <spwhitton@spwhitton.name>

    * lisp/subr.el (while-let): Use if-let, not if-let* (bug#60758).
---
 lisp/subr.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/subr.el b/lisp/subr.el
index 62f72734e1..485ca9e4f1 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))))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]