From: Juanma Barranquero Date: Fri, 19 Jul 2002 06:25:06 +0000 (+0000) Subject: (dot, dot-max, dot-min, dot-marker, buffer-flush-undo, baud-rate, X-Git-Tag: ttn-vms-21-2-B4~13993 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b4591b37dc1397f7f759461d7b91774d4ddb8d79;p=emacs.git (dot, dot-max, dot-min, dot-marker, buffer-flush-undo, baud-rate, compiled-function-p, define-function): Move obsolescence declarations from subr.el --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4a0708c34c9..0e5dcb2518b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,13 @@ +2002-07-19 Juanma Barranquero + + * emacs-lisp/bytecomp.el (dot, dot-max, dot-min, dot-marker) + (buffer-flush-undo, baud-rate, compiled-function-p, define-function): + Move obsolescence declarations to subr.el. + + * subr.el (dot, dot-max, dot-min, dot-marker, buffer-flush-undo) + (baud-rate, compiled-function-p, define-function): Move obsolescence + declarations from subr.el + 2002-07-18 J.D. Smith * 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." (make-obsolete 'sref 'aref "20.4") (make-obsolete 'char-bytes "now always returns 1 (maintained for backward compatibility)." "20.4") (make-obsolete 'chars-in-region "use (abs (- BEG END))." "20.3") +(make-obsolete 'dot 'point "before 19.15") +(make-obsolete 'dot-max 'point-max "before 19.15") +(make-obsolete 'dot-min 'point-min "before 19.15") +(make-obsolete 'dot-marker 'point-marker "before 19.15") +(make-obsolete 'buffer-flush-undo 'buffer-disable-undo "before 19.15") +(make-obsolete 'baud-rate "use the baud-rate variable instead." "before 19.15") +(make-obsolete 'compiled-function-p 'byte-code-function-p "before 19.15") +(make-obsolete 'define-function 'defalias "20.1") (defun insert-string (&rest args) "Mocklisp-compatibility insert function.