aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath1996-02-07 16:56:01 +0000
committerRoland McGrath1996-02-07 16:56:01 +0000
commit34f05bb1adc0bc0eaa0eebafa17317fcaab6c741 (patch)
treeb7b726e8c9def003025fa6adeb6f2e095fc08704
parent0c6be60d2788cd29e633b590d26bd44739b0a942 (diff)
downloademacs-34f05bb1adc0bc0eaa0eebafa17317fcaab6c741.tar.gz
emacs-34f05bb1adc0bc0eaa0eebafa17317fcaab6c741.zip
(run-at-time): Doc fix.
-rw-r--r--lisp/timer.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/timer.el b/lisp/timer.el
index adb44db7ca3..3b751607500 100644
--- a/lisp/timer.el
+++ b/lisp/timer.el
@@ -178,7 +178,8 @@ fire repeatedly that menu seconds apart."
178(defun run-at-time (time repeat function &rest args) 178(defun run-at-time (time repeat function &rest args)
179 "Run a function at a time, and optionally on a regular interval. 179 "Run a function at a time, and optionally on a regular interval.
180Arguments are TIME, REPEAT, FUNCTION &rest ARGS. 180Arguments are TIME, REPEAT, FUNCTION &rest ARGS.
181TIME is a string like \"11:23pm\" or a value from `encode-time'. 181TIME is a string like \"11:23pm\" or a value from `encode-time',
182or a number of seconds from now.
182REPEAT, an integer number of seconds, is the interval on which to repeat 183REPEAT, an integer number of seconds, is the interval on which to repeat
183the call to the function. If REPEAT is nil or 0, call it just once. 184the call to the function. If REPEAT is nil or 0, call it just once.
184 185