comparison lisp/emacs-lisp/bytecomp.el @ 1604:25173c1db5a6

* bytecomp.el: Declare unread-command-char an obsolete variable. * bytecomp.el: (require 'backquote).
author Jim Blandy <jimb@redhat.com>
date Mon, 16 Nov 1992 01:21:50 +0000
parents 50af75dfa70a
children df06a60f3362
comparison
equal deleted inserted replaced
1603:3e621a2a9cfe 1604:25173c1db5a6
149 ;;; o The command compile-defun is analogous to eval-defun. 149 ;;; o The command compile-defun is analogous to eval-defun.
150 ;;; 150 ;;;
151 ;;; o If you run byte-compile-file on a filename which is visited in a 151 ;;; o If you run byte-compile-file on a filename which is visited in a
152 ;;; buffer, and that buffer is modified, you are asked whether you want 152 ;;; buffer, and that buffer is modified, you are asked whether you want
153 ;;; to save the buffer before compiling. 153 ;;; to save the buffer before compiling.
154
155 (require 'backquote)
154 156
155 (or (fboundp 'defsubst) 157 (or (fboundp 'defsubst)
156 ;; This really ought to be loaded already! 158 ;; This really ought to be loaded already!
157 (load-library "byte-run")) 159 (load-library "byte-run"))
158 160
2970 (make-obsolete-variable 'lisp-indent-hook 'lisp-indent-function) 2972 (make-obsolete-variable 'lisp-indent-hook 'lisp-indent-function)
2971 (make-obsolete-variable 'temp-buffer-show-hook 2973 (make-obsolete-variable 'temp-buffer-show-hook
2972 'temp-buffer-show-function) 2974 'temp-buffer-show-function)
2973 (make-obsolete-variable 'inhibit-local-variables 2975 (make-obsolete-variable 'inhibit-local-variables
2974 "use enable-local-variables (with the reversed sense.)") 2976 "use enable-local-variables (with the reversed sense.)")
2977 (make-obsolete-variable 'unread-command-char
2978 "use unread-command-event; now nil means `no event', instead of -1.")
2975 2979
2976 (provide 'byte-compile) 2980 (provide 'byte-compile)
2977 2981
2978 2982
2979 ;;; report metering (see the hacks in bytecode.c) 2983 ;;; report metering (see the hacks in bytecode.c)