]> git.eshelyaron.com Git - emacs.git/commitdiff
(timer-set-time-with-usecs): Mark obsolete.
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 17 Jul 2002 07:30:57 +0000 (07:30 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 17 Jul 2002 07:30:57 +0000 (07:30 +0000)
lisp/ChangeLog
lisp/timer.el

index 23ac1416653a8d342ebaf27c96b7f6e35ecf76ae..d8a47842999fcc17578e04c24c20f19f5b1ef661 100644 (file)
@@ -1,3 +1,7 @@
+2002-07-17  Juanma Barranquero  <lektu@terra.es>
+
+       * timer.el (timer-set-time-with-usecs): Mark obsolete.
+
 2002-07-16  Stefan Monnier  <monnier@cs.yale.edu>
 
        * vc.el (vc-default-comment-history): Hard code *vc*.
        * compare-w.el (compare-windows-whitespace): Always allow newline
        even if it does not have whitespace syntax.
 
-2002-07-14  Richard M. Stallman  <rms@gnu.org>
-
-       * files.el (find-alternate-file): Offer to save a modified buffer.
-       Handle kill-buffer-query-functions better.
-
-       * startup.el (normal-splash-screen, fancy-splash-text):
-       Update name of help menu item for ordering printed manuals.
-
-       * emacs-lisp/checkdoc.el: Fix doc typos.
-
 2002-07-16  Juanma Barranquero  <lektu@terra.es>
 
        * timer.el (timer-set-time, timer-set-time-with-usecs): Fix docstring.
        * mouse-sel.el (mouse-sel-bindings): Save/restore interprogram
        cut/paste functions.
 
+2002-07-14  Richard M. Stallman  <rms@gnu.org>
+
+       * files.el (find-alternate-file): Offer to save a modified buffer.
+       Handle kill-buffer-query-functions better.
+
+       * startup.el (normal-splash-screen, fancy-splash-text):
+       Update name of help menu item for ordering printed manuals.
+
+       * emacs-lisp/checkdoc.el: Fix doc typos.
+
 2002-07-14  Stefan Monnier  <monnier@cs.yale.edu>
 
        * textmodes/tex-mode.el: Set encoding to utf-8.
index b93ec44665242970fb3469aec5f2a972a1be0332..0ca97ca3aeccd76700cb69838096c20d11603ebb 100644 (file)
@@ -149,6 +149,9 @@ fire repeatedly that many seconds apart."
   (aset timer 3 usecs)
   (aset timer 4 (and (numberp delta) (> delta 0) delta))
   timer)
+(make-obsolete 'timer-set-time-with-usecs
+               "use `timer-set-time' and `timer-inc-time' instead."
+               "21.4")
 
 (defun timer-set-function (timer function &optional args)
   "Make TIMER call FUNCTION with optional ARGS when triggering."