branch: externals/assess
commit 74d8de749c5557c7a55db474c839b2e8a3228a27
Author: Phillip Lord <phillip.l...@russet.org.uk>
Commit: Phillip Lord <phillip.l...@russet.org.uk>

    assess-with-temp-buffers now uses let*
    
    Previously it used `let' but this prevents the creation of a buffer
    based on another temporary buffer.
---
 assess.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/assess.el b/assess.el
index 3ae4734dc8..6fa05d623b 100644
--- a/assess.el
+++ b/assess.el
@@ -220,7 +220,7 @@ at the end of the form."
           #'assess--temp-buffer-let-form
           varlist)))
     `(assess-with-preserved-buffer-list
-      (let ,let-form
+      (let* ,let-form
         ,@body))))
 
 (defmacro assess-as-temp-buffer (x &rest body)

Reply via email to