diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2002-06-27 16:07:04 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2002-06-27 16:07:04 +0000 |
commit | 52f4048f1394ac2ea6b0875ddf4cc15cb3b3f723 (patch) | |
tree | 117f2ade207bb944d05d457e2b9d1e272301a8ff /lisp/emacs-lisp | |
parent | 212bb1b5fb8aca50fc993f94df73e65a6e067e43 (diff) | |
download | emacs-52f4048f1394ac2ea6b0875ddf4cc15cb3b3f723.tar.gz emacs-52f4048f1394ac2ea6b0875ddf4cc15cb3b3f723.tar.bz2 emacs-52f4048f1394ac2ea6b0875ddf4cc15cb3b3f723.zip |
(baud-rate): Fix obsolescence declaration.
(meta-flag): Likewise.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 91aa6c53d18..bb1067f4ff2 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -10,7 +10,7 @@ ;;; This version incorporates changes up to version 2.10 of the ;;; Zawinski-Furuseth compiler. -(defconst byte-compile-version "$Revision: 2.99 $") +(defconst byte-compile-version "$Revision: 2.100 $") ;; This file is part of GNU Emacs. @@ -3762,7 +3762,7 @@ For example, invoke `emacs -batch -f batch-byte-recompile-directory .'." (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 '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") (make-obsolete-variable 'auto-fill-hook 'auto-fill-function "before 19.15") @@ -3779,7 +3779,7 @@ For example, invoke `emacs -batch -f batch-byte-recompile-directory .'." "before 19.15") (make-obsolete-variable 'suspend-hooks 'suspend-hook "before 19.15") (make-obsolete-variable 'comment-indent-hook 'comment-indent-function "before 19.15") -(make-obsolete-variable 'meta-flag "Use the set-input-mode function instead." "before 19.34") +(make-obsolete-variable 'meta-flag "use the set-input-mode function instead." "before 19.34") (make-obsolete-variable 'executing-macro 'executing-kbd-macro "before 19.34") (make-obsolete-variable 'before-change-function "use before-change-functions; which is a list of functions rather than a single function." |