aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert1996-09-03 05:20:35 +0000
committerPaul Eggert1996-09-03 05:20:35 +0000
commitfa4993617b92528e32dc332c608ec9e32e410b84 (patch)
tree31dfc37514bda1a793f30d77d0a03f26ea4ea229
parent99153b9e0e67a0fe664c206677f60fd5018da693 (diff)
downloademacs-fa4993617b92528e32dc332c608ec9e32e410b84.tar.gz
emacs-fa4993617b92528e32dc332c608ec9e32e410b84.zip
(run-at-time): Doc fix.
-rw-r--r--lisp/timer.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/timer.el b/lisp/timer.el
index 1761ecc8759..b3f1283d56b 100644
--- a/lisp/timer.el
+++ b/lisp/timer.el
@@ -245,7 +245,7 @@ fire repeatedly that many seconds apart."
245 245
246;;;###autoload 246;;;###autoload
247(defun run-at-time (time repeat function &rest args) 247(defun run-at-time (time repeat function &rest args)
248 "Perform an action after a delay of SECS seconds. 248 "Perform an action at time TIME.
249Repeat the action every REPEAT seconds, if REPEAT is non-nil. 249Repeat the action every REPEAT seconds, if REPEAT is non-nil.
250TIME should be a string like \"11:23pm\", nil meaning now, a number of seconds 250TIME should be a string like \"11:23pm\", nil meaning now, a number of seconds
251from now, or a value from `encode-time'. 251from now, or a value from `encode-time'.