comparison lisp/emacs-lisp/bytecomp.el @ 46536:7a35cb022d0c

(unread-command-char, executing-macro, post-command-idle-hook, post-command-idle-delay): Move obsolescence declarations to subr.el.
author Juanma Barranquero <lekktu@gmail.com>
date Fri, 19 Jul 2002 11:35:37 +0000
parents 00b0a792b2ff
children a9a03aa7ba8a
comparison
equal deleted inserted replaced
46535:31de99e267b3 46536:7a35cb022d0c
8 ;; Maintainer: FSF 8 ;; Maintainer: FSF
9 ;; Keywords: lisp 9 ;; Keywords: lisp
10 10
11 ;;; This version incorporates changes up to version 2.10 of the 11 ;;; This version incorporates changes up to version 2.10 of the
12 ;;; Zawinski-Furuseth compiler. 12 ;;; Zawinski-Furuseth compiler.
13 (defconst byte-compile-version "$Revision: 2.102 $") 13 (defconst byte-compile-version "$Revision: 2.103 $")
14 14
15 ;; This file is part of GNU Emacs. 15 ;; This file is part of GNU Emacs.
16 16
17 ;; GNU Emacs is free software; you can redistribute it and/or modify 17 ;; GNU Emacs is free software; you can redistribute it and/or modify
18 ;; it under the terms of the GNU General Public License as published by 18 ;; it under the terms of the GNU General Public License as published by
3808 (make-obsolete-variable 'blink-paren-hook 'blink-paren-function "before 19.15") 3808 (make-obsolete-variable 'blink-paren-hook 'blink-paren-function "before 19.15")
3809 (make-obsolete-variable 'lisp-indent-hook 'lisp-indent-function "before 19.15") 3809 (make-obsolete-variable 'lisp-indent-hook 'lisp-indent-function "before 19.15")
3810 (make-obsolete-variable 'inhibit-local-variables 3810 (make-obsolete-variable 'inhibit-local-variables
3811 "use enable-local-variables (with the reversed sense)." 3811 "use enable-local-variables (with the reversed sense)."
3812 "before 19.15") 3812 "before 19.15")
3813 (make-obsolete-variable 'unread-command-char
3814 "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."
3815 "before 19.15")
3816 (make-obsolete-variable 'unread-command-event 3813 (make-obsolete-variable 'unread-command-event
3817 "use unread-command-events; which is a list of events rather than a single event." 3814 "use unread-command-events; which is a list of events rather than a single event."
3818 "before 19.15") 3815 "before 19.15")
3819 (make-obsolete-variable 'suspend-hooks 'suspend-hook "before 19.15") 3816 (make-obsolete-variable 'suspend-hooks 'suspend-hook "before 19.15")
3820 (make-obsolete-variable 'comment-indent-hook 'comment-indent-function "before 19.15") 3817 (make-obsolete-variable 'comment-indent-hook 'comment-indent-function "before 19.15")
3821 (make-obsolete-variable 'meta-flag "use the set-input-mode function instead." "before 19.34") 3818 (make-obsolete-variable 'meta-flag "use the set-input-mode function instead." "before 19.34")
3822 (make-obsolete-variable 'executing-macro 'executing-kbd-macro "before 19.34")
3823 (make-obsolete-variable 'before-change-function 3819 (make-obsolete-variable 'before-change-function
3824 "use before-change-functions; which is a list of functions rather than a single function." 3820 "use before-change-functions; which is a list of functions rather than a single function."
3825 "before 19.34") 3821 "before 19.34")
3826 (make-obsolete-variable 'after-change-function 3822 (make-obsolete-variable 'after-change-function
3827 "use after-change-functions; which is a list of functions rather than a single function." 3823 "use after-change-functions; which is a list of functions rather than a single function."
3828 "before 19.34") 3824 "before 19.34")
3829 (make-obsolete-variable 'font-lock-doc-string-face 'font-lock-string-face "before 19.34") 3825 (make-obsolete-variable 'font-lock-doc-string-face 'font-lock-string-face "before 19.34")
3830 (make-obsolete-variable 'post-command-idle-hook
3831 "use timers instead, with `run-with-idle-timer'." "before 19.34")
3832 (make-obsolete-variable 'post-command-idle-delay
3833 "use timers instead, with `run-with-idle-timer'." "before 19.34")
3834 3826
3835 (provide 'byte-compile) 3827 (provide 'byte-compile)
3836 (provide 'bytecomp) 3828 (provide 'bytecomp)
3837 3829
3838 3830