diff options
| author | Roland McGrath | 1996-02-07 16:56:01 +0000 |
|---|---|---|
| committer | Roland McGrath | 1996-02-07 16:56:01 +0000 |
| commit | 34f05bb1adc0bc0eaa0eebafa17317fcaab6c741 (patch) | |
| tree | b7b726e8c9def003025fa6adeb6f2e095fc08704 | |
| parent | 0c6be60d2788cd29e633b590d26bd44739b0a942 (diff) | |
| download | emacs-34f05bb1adc0bc0eaa0eebafa17317fcaab6c741.tar.gz emacs-34f05bb1adc0bc0eaa0eebafa17317fcaab6c741.zip | |
(run-at-time): Doc fix.
| -rw-r--r-- | lisp/timer.el | 3 |
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. |
| 180 | Arguments are TIME, REPEAT, FUNCTION &rest ARGS. | 180 | Arguments are TIME, REPEAT, FUNCTION &rest ARGS. |
| 181 | TIME is a string like \"11:23pm\" or a value from `encode-time'. | 181 | TIME is a string like \"11:23pm\" or a value from `encode-time', |
| 182 | or a number of seconds from now. | ||
| 182 | REPEAT, an integer number of seconds, is the interval on which to repeat | 183 | REPEAT, an integer number of seconds, is the interval on which to repeat |
| 183 | the call to the function. If REPEAT is nil or 0, call it just once. | 184 | the call to the function. If REPEAT is nil or 0, call it just once. |
| 184 | 185 | ||