* lisp/emacs-lisp/thunk.el (thunk-delay): Fix the macro.

This commit is contained in:
Nicolas Petton 2015-10-28 09:54:00 +01:00
parent 6e2a4021d3
commit 61b63f460d

View file

@ -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.