diff options
author | Nicolas Petton <nicolas@petton.fr> | 2015-10-28 09:54:00 +0100 |
---|---|---|
committer | Nicolas Petton <nicolas@petton.fr> | 2015-10-28 09:56:03 +0100 |
commit | 61b63f460ddfb443e2575e4fa7e7714b17579659 (patch) | |
tree | 75a16441529e9720315ae319ef8371507ab90a6b /lisp/emacs-lisp | |
parent | 6e2a4021d3fc0166b72c60088fb2cea01484453c (diff) | |
download | emacs-61b63f460ddfb443e2575e4fa7e7714b17579659.tar.gz emacs-61b63f460ddfb443e2575e4fa7e7714b17579659.tar.bz2 emacs-61b63f460ddfb443e2575e4fa7e7714b17579659.zip |
* lisp/emacs-lisp/thunk.el (thunk-delay): Fix the macro.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/thunk.el | 4 |
1 files 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. |