Function: thunk-force

thunk-force is a byte-compiled function defined in thunk.el.gz.

Signature

(thunk-force DELAYED)

Documentation

Force the evaluation of DELAYED.

The result is cached and will be returned on subsequent calls with the same DELAYED argument.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/thunk.el.gz
(defun thunk-force (delayed)
  "Force the evaluation of DELAYED.
The result is cached and will be returned on subsequent calls
with the same DELAYED argument."
  (funcall delayed))