# HG changeset patch # User Juanma Barranquero # Date 1026801786 0 # Node ID ded24b27ba964f7d2cf598490d6bebdf983957ce # Parent 77eee86ab97d8749b5ab931166333eb21ee6d867 (timer-set-time, timer-set-time-with-usecs): Fix docstring. diff -r 77eee86ab97d -r ded24b27ba96 lisp/timer.el --- 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"))