diff options
| author | Richard M. Stallman | 1996-02-26 18:51:09 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-02-26 18:51:09 +0000 |
| commit | 995b296f039c863e29c77e287c502363be6cec8f (patch) | |
| tree | 08e11c37d2f8f1d60bd83dc04be0bc6f5d35f454 /lisp/timer.el | |
| parent | c86b6d4435102e8c9dd7fc20c44147d1071cf740 (diff) | |
| download | emacs-995b296f039c863e29c77e287c502363be6cec8f.tar.gz emacs-995b296f039c863e29c77e287c502363be6cec8f.zip | |
Comment change.
Diffstat (limited to 'lisp/timer.el')
| -rw-r--r-- | lisp/timer.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/timer.el b/lisp/timer.el index 0b2678f8ded..b380ea531e3 100644 --- a/lisp/timer.el +++ b/lisp/timer.el | |||
| @@ -223,7 +223,7 @@ the call to the function. If REPEAT is nil or 0, call it just once. | |||
| 223 | This function returns a timer object which you can use in `cancel-timer'." | 223 | This function returns a timer object which you can use in `cancel-timer'." |
| 224 | (interactive "sRun at time: \nNRepeat interval: \naFunction: ") | 224 | (interactive "sRun at time: \nNRepeat interval: \naFunction: ") |
| 225 | 225 | ||
| 226 | ;; Special case: nil means "now" and is useful when repeting. | 226 | ;; Special case: nil means "now" and is useful when repeating. |
| 227 | (if (null time) | 227 | (if (null time) |
| 228 | (setq time (current-time))) | 228 | (setq time (current-time))) |
| 229 | 229 | ||