1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-21 13:31:37 -07:00

(timer-set-time, timer-set-time-with-usecs): Fix docstring.

This commit is contained in:
Juanma Barranquero 2002-07-16 06:43:19 +00:00
parent 740fd9d819
commit 301085d403
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2002-07-16 Juanma Barranquero <lektu@terra.es>
* timer.el (timer-set-time, timer-set-time-with-usecs): Fix docstring.
2002-07-15 Juanma Barranquero <lektu@terra.es>
* help-fns.el (describe-variable): Show documentation for aliased

View file

@ -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"))