]> git.eshelyaron.com Git - emacs.git/commitdiff
(timer-set-time, timer-set-time-with-usecs): Fix docstring.
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 16 Jul 2002 07:23:42 +0000 (07:23 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 16 Jul 2002 07:23:42 +0000 (07:23 +0000)
lisp/ChangeLog
lisp/timer.el

index 43d9f9d6fa738ed3693953cf45500fe9c8ad71f8..14aa46c50797f71469ca4a05a5805c10bed5929f 100644 (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-12  Glenn Morris  <gmorris@ast.cam.ac.uk>
 
        * calendar/timeclock.el (timeclock-get-workday-function): 
index a908f2a822565ec29b8d8f554aa683d8f425616a..941de613dc5f6cc30266f43b74a34b2db73854b5 100644 (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"))
@@ -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"))