diff options
| -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 | ||