aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2002-07-19 06:25:06 +0000
committerJuanma Barranquero2002-07-19 06:25:06 +0000
commitb4591b37dc1397f7f759461d7b91774d4ddb8d79 (patch)
tree9c79744741bb6cdece5855a305e13e16f2a80a5c
parent9c708a1b1cbf3968c44bb0b95e689a44fdc7888d (diff)
downloademacs-b4591b37dc1397f7f759461d7b91774d4ddb8d79.tar.gz
emacs-b4591b37dc1397f7f759461d7b91774d4ddb8d79.zip
(dot, dot-max, dot-min, dot-marker, buffer-flush-undo, baud-rate,
compiled-function-p, define-function): Move obsolescence declarations from subr.el
-rw-r--r--lisp/ChangeLog10
-rw-r--r--lisp/subr.el8
2 files changed, 18 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4a0708c34c9..0e5dcb2518b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,13 @@
12002-07-19 Juanma Barranquero <lektu@terra.es>
2
3 * emacs-lisp/bytecomp.el (dot, dot-max, dot-min, dot-marker)
4 (buffer-flush-undo, baud-rate, compiled-function-p, define-function):
5 Move obsolescence declarations to subr.el.
6
7 * subr.el (dot, dot-max, dot-min, dot-marker, buffer-flush-undo)
8 (baud-rate, compiled-function-p, define-function): Move obsolescence
9 declarations from subr.el
10
12002-07-18 J.D. Smith <jdsmith@as.arizona.edu> 112002-07-18 J.D. Smith <jdsmith@as.arizona.edu>
2 12
3 * progmodes/idlwave.el: Updated to IDLWAVE version 4.14. Too many 13 * progmodes/idlwave.el: Updated to IDLWAVE version 4.14. Too many
diff --git a/lisp/subr.el b/lisp/subr.el
index 73b3dcfd603..3a0a65bc14a 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -701,6 +701,14 @@ as returned by the `event-start' and `event-end' functions."
701(make-obsolete 'sref 'aref "20.4") 701(make-obsolete 'sref 'aref "20.4")
702(make-obsolete 'char-bytes "now always returns 1 (maintained for backward compatibility)." "20.4") 702(make-obsolete 'char-bytes "now always returns 1 (maintained for backward compatibility)." "20.4")
703(make-obsolete 'chars-in-region "use (abs (- BEG END))." "20.3") 703(make-obsolete 'chars-in-region "use (abs (- BEG END))." "20.3")
704(make-obsolete 'dot 'point "before 19.15")
705(make-obsolete 'dot-max 'point-max "before 19.15")
706(make-obsolete 'dot-min 'point-min "before 19.15")
707(make-obsolete 'dot-marker 'point-marker "before 19.15")
708(make-obsolete 'buffer-flush-undo 'buffer-disable-undo "before 19.15")
709(make-obsolete 'baud-rate "use the baud-rate variable instead." "before 19.15")
710(make-obsolete 'compiled-function-p 'byte-code-function-p "before 19.15")
711(make-obsolete 'define-function 'defalias "20.1")
704 712
705(defun insert-string (&rest args) 713(defun insert-string (&rest args)
706 "Mocklisp-compatibility insert function. 714 "Mocklisp-compatibility insert function.