Mercurial > emacs
changeset 46399:ded24b27ba96
(timer-set-time, timer-set-time-with-usecs): Fix docstring.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Tue, 16 Jul 2002 06:43:06 +0000 |
parents | 77eee86ab97d |
children | 9a7373e73243 |
files | lisp/timer.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/timer.el Tue Jul 16 01:00:43 2002 +0000 +++ b/lisp/timer.el Tue Jul 16 06:43:06 2002 +0000 @@ -45,7 +45,7 @@ (defun timer-set-time (timer time &optional delta) "Set the trigger time of TIMER to TIME. TIME must be in the internal format returned by, e.g., `current-time'. -If optional third argument DELTA is a non-zero integer, make the timer +If optional third argument DELTA is a positive number, make the timer fire repeatedly that many seconds apart." (or (timerp timer) (error "Invalid timer")) @@ -140,7 +140,7 @@ "Set the trigger time of TIMER to TIME plus USECS. TIME must be in the internal format returned by, e.g., `current-time'. The microsecond count from TIME is ignored, and USECS is used instead. -If optional fourth argument DELTA is a non-zero integer, make the timer +If optional fourth argument DELTA is a positive number, make the timer fire repeatedly that many seconds apart." (or (timerp timer) (error "Invalid timer"))