Mercurial > emacs
comparison lisp/timer.el @ 16077:740cd456b1da
(run-at-time): Doc fix.
author | Paul Eggert <eggert@twinsun.com> |
---|---|
date | Tue, 03 Sep 1996 05:20:35 +0000 |
parents | e4f4dc22f5a3 |
children | b215fb935fc3 |
comparison
equal
deleted
inserted
replaced
16076:5d1e0290bbd0 | 16077:740cd456b1da |
---|---|
243 "Non-nil if EVENT is a timeout event." | 243 "Non-nil if EVENT is a timeout event." |
244 (and (listp event) (eq (car event) 'timer-event))) | 244 (and (listp event) (eq (car event) 'timer-event))) |
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. |
249 Repeat the action every REPEAT seconds, if REPEAT is non-nil. | 249 Repeat the action every REPEAT seconds, if REPEAT is non-nil. |
250 TIME should be a string like \"11:23pm\", nil meaning now, a number of seconds | 250 TIME should be a string like \"11:23pm\", nil meaning now, a number of seconds |
251 from now, or a value from `encode-time'. | 251 from now, or a value from `encode-time'. |
252 REPEAT may be an integer or floating point number. | 252 REPEAT may be an integer or floating point number. |
253 The action is to call FUNCTION with arguments ARGS. | 253 The action is to call FUNCTION with arguments ARGS. |