diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2002-07-19 11:35:37 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2002-07-19 11:35:37 +0000 |
commit | 6079b12b9463715c91f0d3eca74f9b6ce9d80547 (patch) | |
tree | f309bb8ac5ab8e98de4ff76effbedd62549bc73c /lisp/emacs-lisp/bytecomp.el | |
parent | c7f4f573430ee43c937f17bd1791ac1d9150d0b7 (diff) | |
download | emacs-6079b12b9463715c91f0d3eca74f9b6ce9d80547.tar.gz emacs-6079b12b9463715c91f0d3eca74f9b6ce9d80547.tar.bz2 emacs-6079b12b9463715c91f0d3eca74f9b6ce9d80547.zip |
(unread-command-char, executing-macro, post-command-idle-hook,
post-command-idle-delay): Move obsolescence declarations to subr.el.
Diffstat (limited to 'lisp/emacs-lisp/bytecomp.el')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index a27aeb2166f..1bd5f537486 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.102 $") +(defconst byte-compile-version "$Revision: 2.103 $") ;; This file is part of GNU Emacs. @@ -3810,16 +3810,12 @@ For example, invoke `emacs -batch -f batch-byte-recompile-directory .'." (make-obsolete-variable 'inhibit-local-variables "use enable-local-variables (with the reversed sense)." "before 19.15") -(make-obsolete-variable 'unread-command-char - "use unread-command-events instead. That variable is a list of events to reread, so it now uses nil to mean `no event', instead of -1." - "before 19.15") (make-obsolete-variable 'unread-command-event "use unread-command-events; which is a list of events rather than a single event." "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 '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." "before 19.34") @@ -3827,10 +3823,6 @@ For example, invoke `emacs -batch -f batch-byte-recompile-directory .'." "use after-change-functions; which is a list of functions rather than a single function." "before 19.34") (make-obsolete-variable 'font-lock-doc-string-face 'font-lock-string-face "before 19.34") -(make-obsolete-variable 'post-command-idle-hook - "use timers instead, with `run-with-idle-timer'." "before 19.34") -(make-obsolete-variable 'post-command-idle-delay - "use timers instead, with `run-with-idle-timer'." "before 19.34") (provide 'byte-compile) (provide 'bytecomp) |