]> git.eshelyaron.com Git - emacs.git/commitdiff
; * doc/lispref/eval.texi (Deferred Eval): Improve wording.
authorEli Zaretskii <eliz@gnu.org>
Fri, 1 Dec 2017 18:26:35 +0000 (20:26 +0200)
committerEli Zaretskii <eliz@gnu.org>
Fri, 1 Dec 2017 18:26:35 +0000 (20:26 +0200)
doc/lispref/eval.texi

index 74fefdb71bc3d9479c7cd07197fd0218b8490b08..0f9f301547a5dd994131c14437f6043d51b17f78 100644 (file)
@@ -887,10 +887,10 @@ particular elements, like this:
 
 
   Sometimes it is useful to delay the evaluation of an expression, for
-example if you want to avoid to perform a time-consuming calculation
-in the case that it turns out that the result is not needed in the
-future of the program.  Therefore, the @file{thunk} library provides
-the following functions and macros:
+example if you want to avoid performing a time-consuming calculation
+if it turns out that the result is not needed in the future of the
+program.  The @file{thunk} library provides the following functions
+and macros to support such @dfn{deferred evaluation}:
 
 @cindex thunk
 @defmac thunk-delay forms@dots{}