diff options
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index a981a3cf033..291d9fea2fd 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -152,6 +152,8 @@ | |||
| 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 | 154 | ||
| 155 | (require 'backquote) | ||
| 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")) |
| @@ -2972,6 +2974,8 @@ For example, invoke \"emacs -batch -f batch-byte-compile $emacs/ ~/*.el\"" | |||
| 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 | ||