From 61b63f460ddfb443e2575e4fa7e7714b17579659 Mon Sep 17 00:00:00 2001 From: Nicolas Petton Date: Wed, 28 Oct 2015 09:54:00 +0100 Subject: [PATCH] * lisp/emacs-lisp/thunk.el (thunk-delay): Fix the macro. --- lisp/emacs-lisp/thunk.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/emacs-lisp/thunk.el b/lisp/emacs-lisp/thunk.el index d07b25736aa..0c5816a616d 100644 --- a/lisp/emacs-lisp/thunk.el +++ b/lisp/emacs-lisp/thunk.el @@ -57,8 +57,8 @@ ,forced (unless ,forced (setf ,val (progn ,@body)) - (setf ,forced t))) - ,val)))) + (setf ,forced t)) + ,val))))) (defun thunk-force (delayed) "Force the evaluation of DELAYED. -- 2.39.5