From: Juanma Barranquero Date: Tue, 16 Jul 2002 07:23:42 +0000 (+0000) Subject: (timer-set-time, timer-set-time-with-usecs): Fix docstring. X-Git-Tag: emacs-pretest-21.2.91~161 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=79e1cf213e3d394336681d86169113c95038757a;p=emacs.git (timer-set-time, timer-set-time-with-usecs): Fix docstring. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 43d9f9d6fa7..14aa46c5079 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2002-07-16 Juanma Barranquero + + * timer.el (timer-set-time, timer-set-time-with-usecs): Fix docstring. + 2002-07-12 Glenn Morris * calendar/timeclock.el (timeclock-get-workday-function): diff --git a/lisp/timer.el b/lisp/timer.el index a908f2a8225..941de613dc5 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")) @@ -138,7 +138,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"))