From: Nicolas Petton Date: Wed, 28 Oct 2015 08:54:00 +0000 (+0100) Subject: * lisp/emacs-lisp/thunk.el (thunk-delay): Fix the macro. X-Git-Tag: emacs-25.0.90~1003^2^2~1 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=61b63f460ddfb443e2575e4fa7e7714b17579659;p=emacs.git * lisp/emacs-lisp/thunk.el (thunk-delay): Fix the macro. --- 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.