diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2002-07-16 06:43:19 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2002-07-16 06:43:19 +0000 |
commit | 301085d403de6fbc609f704965305fdf3e1a7db6 (patch) | |
tree | cde0ed3d4e6f6a44870f2215f85bacbac9b603cc /lisp/timer.el | |
parent | 740fd9d81928cce9870eee64fd8faaee41d21f8c (diff) | |
download | emacs-301085d403de6fbc609f704965305fdf3e1a7db6.tar.gz emacs-301085d403de6fbc609f704965305fdf3e1a7db6.tar.bz2 emacs-301085d403de6fbc609f704965305fdf3e1a7db6.zip |
(timer-set-time, timer-set-time-with-usecs): Fix docstring.
Diffstat (limited to 'lisp/timer.el')
-rw-r--r-- | lisp/timer.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/timer.el b/lisp/timer.el index c98d160d57f..b93ec446652 100644 --- a/lisp/timer.el +++ b/lisp/timer.el @@ -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 @@ SECS may be a fraction." "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")) |