From 7660d0359e637301651fe4433c2b9851840db120 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 11 Dec 2020 19:26:43 -0500 Subject: [PATCH] * lisp/emacs-lisp/thunk.el (thunk-let*): Don't modify `bindings` --- lisp/emacs-lisp/thunk.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/thunk.el b/lisp/emacs-lisp/thunk.el index c8e483e9a4a..cd42152527e 100644 --- a/lisp/emacs-lisp/thunk.el +++ b/lisp/emacs-lisp/thunk.el @@ -122,7 +122,7 @@ Using `thunk-let' and `thunk-let*' requires `lexical-binding'." (declare (indent 1) (debug let)) (cl-reduce (lambda (expr binding) `(thunk-let (,binding) ,expr)) - (nreverse bindings) + (reverse bindings) :initial-value (macroexp-progn body))) ;; (defalias 'lazy-let #'thunk-let) -- 2.39.2