aboutsummaryrefslogtreecommitdiff
path: root/lisp/later-do.el
diff options
context:
space:
mode:
authorTim Landscheidt <tim@tim-landscheidt.de>2010-06-27 17:33:35 +0000
committerTim Landscheidt <tim@tim-landscheidt.de>2010-06-27 17:33:35 +0000
commitda9f87ffd68f7b63843da2910d94281b41f18984 (patch)
tree608f98ee6162f336a14331cb88d7c905f9ea49d4 /lisp/later-do.el
parented6a77997d4228d6a6a3da1a880e7672a2853829 (diff)
Fix typos and spacing.
* AUTHORS, FAQ, NEWS, README, lisp/emms-bookmarks.el, lisp/emms-cache.el, lisp/later-do.el: Fix typos and spacing.
Diffstat (limited to 'lisp/later-do.el')
-rw-r--r--lisp/later-do.el13
1 files changed, 6 insertions, 7 deletions
diff --git a/lisp/later-do.el b/lisp/later-do.el
index 61be86b..d8222ae 100644
--- a/lisp/later-do.el
+++ b/lisp/later-do.el
@@ -22,7 +22,7 @@
;;; Commentary
-;; This file will execute lisp code "later on". This way it is
+;; This file will execute lisp code ``later on''. This way it is
;; possible to work while elisp does some longer calculations, if you
;; can convert those calculations into a sequence of function calls.
@@ -42,17 +42,16 @@
:type 'number)
(defvar later-do-list nil
- "A list of functions to be called lateron.")
+ "A list of functions to be called later on.")
(defvar later-do-timer nil
"The timer that later-do uses.")
(defun later-do (function &rest args)
- "Apply FUNCTION to ARGS later on. This is an unspecified amount of
-time after this call, and definitely not while lisp is still
-executing.
-Code added using `later-do' is guaranteed to be executed in the
-sequence it was added."
+ "Apply FUNCTION to ARGS later on. This is an unspecified
+amount of time after this call, and definitely not while lisp is
+still executing. Code added using `later-do' is guaranteed to be
+executed in the sequence it was added."
(setq later-do-list (nconc later-do-list
(list (cons function args))))
(unless later-do-timer