diff options
| author | Richard M. Stallman | 2000-07-19 22:04:34 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2000-07-19 22:04:34 +0000 |
| commit | 37c004c4f9a727aa42a1ae8491fce4252b00eb0a (patch) | |
| tree | 5441dded855d8d492883a8be602984f2ad86b019 | |
| parent | 8b7bc6282eba1267a4bcbb588a6c6c4f577529df (diff) | |
| download | emacs-37c004c4f9a727aa42a1ae8491fce4252b00eb0a.tar.gz emacs-37c004c4f9a727aa42a1ae8491fce4252b00eb0a.zip | |
(run-with-idle-timer): Doc fix.
| -rw-r--r-- | lisp/timer.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/timer.el b/lisp/timer.el index f60763c2f68..66b16b60fb1 100644 --- a/lisp/timer.el +++ b/lisp/timer.el | |||
| @@ -370,9 +370,11 @@ This function is for compatibility; see also `run-with-timer'." | |||
| 370 | ;;;###autoload | 370 | ;;;###autoload |
| 371 | (defun run-with-idle-timer (secs repeat function &rest args) | 371 | (defun run-with-idle-timer (secs repeat function &rest args) |
| 372 | "Perform an action the next time Emacs is idle for SECS seconds. | 372 | "Perform an action the next time Emacs is idle for SECS seconds. |
| 373 | If REPEAT is non-nil, do this each time Emacs is idle for SECS seconds. | ||
| 374 | SECS may be an integer or a floating point number. | ||
| 375 | The action is to call FUNCTION with arguments ARGS. | 373 | The action is to call FUNCTION with arguments ARGS. |
| 374 | SECS may be an integer or a floating point number. | ||
| 375 | |||
| 376 | If REPEAT is non-nil, do the action each time Emacs has been idle for | ||
| 377 | exactly SECS seconds (that is, only once for each time Emacs becomes idle). | ||
| 376 | 378 | ||
| 377 | This function returns a timer object which you can use in `cancel-timer'." | 379 | This function returns a timer object which you can use in `cancel-timer'." |
| 378 | (interactive | 380 | (interactive |