]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/thunk.el: Better documentation.
authorNicolas Petton <nicolas@petton.fr>
Fri, 23 Oct 2015 16:06:54 +0000 (18:06 +0200)
committerNicolas Petton <nicolas@petton.fr>
Fri, 23 Oct 2015 16:06:54 +0000 (18:06 +0200)
lisp/emacs-lisp/thunk.el

index ab366d295f52532de83e797888835a876fc4e57e..d07b25736aa2203e86b6aa7226d207f527ba09d7 100644 (file)
 
 ;;; Commentary:
 ;;
-;; Thunk provides functions and macros to control the evaluation of
-;; forms.  Use `thunk-delay' to delay the evaluation of a form, and
-;; `thunk-force' to evaluate it. Evaluation is cached, and only
-;; happens once.
+;; Thunk provides functions and macros to delay the evaluation of
+;; forms.
+;;
+;; Use `thunk-delay' to delay the evaluation of a form, and
+;; `thunk-force' to evaluate it. The result of the evaluation is
+;; cached, and only happens once.
+;;
+;; Here is an example of a form which evaluation is delayed:
+;;
+;;     (setq delayed (thunk-delay (message "this message is delayed")))
+;;
+;; `delayed' is not evaluated until `thunk-force' is called, like the
+;; following:
+;;
+;;    (thunk-force delayed)
 
 ;; Tests are located at test/automated/thunk-tests.el