aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJuanma Barranquero2002-07-17 07:30:57 +0000
committerJuanma Barranquero2002-07-17 07:30:57 +0000
commita50908abb52eae975f246a7873a2d3500f6db830 (patch)
tree4f235b252491f0bac543e56de28e2b802253afc1 /lisp
parent03a8bf7ddd8dbea25884e09eeb92751d8e592e02 (diff)
downloademacs-a50908abb52eae975f246a7873a2d3500f6db830.tar.gz
emacs-a50908abb52eae975f246a7873a2d3500f6db830.zip
(timer-set-time-with-usecs): Mark obsolete.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog24
-rw-r--r--lisp/timer.el3
2 files changed, 17 insertions, 10 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 23ac1416653..d8a47842999 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12002-07-17 Juanma Barranquero <lektu@terra.es>
2
3 * timer.el (timer-set-time-with-usecs): Mark obsolete.
4
12002-07-16 Stefan Monnier <monnier@cs.yale.edu> 52002-07-16 Stefan Monnier <monnier@cs.yale.edu>
2 6
3 * vc.el (vc-default-comment-history): Hard code *vc*. 7 * vc.el (vc-default-comment-history): Hard code *vc*.
@@ -68,16 +72,6 @@
68 * compare-w.el (compare-windows-whitespace): Always allow newline 72 * compare-w.el (compare-windows-whitespace): Always allow newline
69 even if it does not have whitespace syntax. 73 even if it does not have whitespace syntax.
70 74
712002-07-14 Richard M. Stallman <rms@gnu.org>
72
73 * files.el (find-alternate-file): Offer to save a modified buffer.
74 Handle kill-buffer-query-functions better.
75
76 * startup.el (normal-splash-screen, fancy-splash-text):
77 Update name of help menu item for ordering printed manuals.
78
79 * emacs-lisp/checkdoc.el: Fix doc typos.
80
812002-07-16 Juanma Barranquero <lektu@terra.es> 752002-07-16 Juanma Barranquero <lektu@terra.es>
82 76
83 * timer.el (timer-set-time, timer-set-time-with-usecs): Fix docstring. 77 * timer.el (timer-set-time, timer-set-time-with-usecs): Fix docstring.
@@ -92,6 +86,16 @@
92 * mouse-sel.el (mouse-sel-bindings): Save/restore interprogram 86 * mouse-sel.el (mouse-sel-bindings): Save/restore interprogram
93 cut/paste functions. 87 cut/paste functions.
94 88
892002-07-14 Richard M. Stallman <rms@gnu.org>
90
91 * files.el (find-alternate-file): Offer to save a modified buffer.
92 Handle kill-buffer-query-functions better.
93
94 * startup.el (normal-splash-screen, fancy-splash-text):
95 Update name of help menu item for ordering printed manuals.
96
97 * emacs-lisp/checkdoc.el: Fix doc typos.
98
952002-07-14 Stefan Monnier <monnier@cs.yale.edu> 992002-07-14 Stefan Monnier <monnier@cs.yale.edu>
96 100
97 * textmodes/tex-mode.el: Set encoding to utf-8. 101 * textmodes/tex-mode.el: Set encoding to utf-8.
diff --git a/lisp/timer.el b/lisp/timer.el
index b93ec446652..0ca97ca3aec 100644
--- a/lisp/timer.el
+++ b/lisp/timer.el
@@ -149,6 +149,9 @@ fire repeatedly that many seconds apart."
149 (aset timer 3 usecs) 149 (aset timer 3 usecs)
150 (aset timer 4 (and (numberp delta) (> delta 0) delta)) 150 (aset timer 4 (and (numberp delta) (> delta 0) delta))
151 timer) 151 timer)
152(make-obsolete 'timer-set-time-with-usecs
153 "use `timer-set-time' and `timer-inc-time' instead."
154 "21.4")
152 155
153(defun timer-set-function (timer function &optional args) 156(defun timer-set-function (timer function &optional args)
154 "Make TIMER call FUNCTION with optional ARGS when triggering." 157 "Make TIMER call FUNCTION with optional ARGS when triggering."