summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/thunk.el
diff options
context:
space:
mode:
authorAnders Lindgren <andlind@gmail.com>2015-10-28 12:09:51 +0100
committerAnders Lindgren <andlind@gmail.com>2015-10-28 12:09:51 +0100
commitcc587a3539612d250d222363b18d15258e33f82a (patch)
tree00c74927ef3da99c7226cbaf586d439e0236b85c /lisp/emacs-lisp/thunk.el
parent590449f3d87f8f43eb0a852233e8945ecbe1c6aa (diff)
parent64c2bfbc4f5daba2ee55acb58a2929070a846b6e (diff)
downloademacs-cc587a3539612d250d222363b18d15258e33f82a.tar.gz
Merge branch 'master' of ssh://git.sv.gnu.org/srv/git/emacs
Diffstat (limited to 'lisp/emacs-lisp/thunk.el')
-rw-r--r--lisp/emacs-lisp/thunk.el4
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.