diff options
| author | Jim Blandy | 1992-11-16 01:21:50 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-11-16 01:21:50 +0000 |
| commit | 79d52eea3e6b77e383d4641f44644949ee89ff98 (patch) | |
| tree | 868683cdc9ce7aa1eba14dfe977553bcbf634fcf /lisp | |
| parent | 2495e5f47774e91a0c1bf71bc35cbbea8598feab (diff) | |
| download | emacs-79d52eea3e6b77e383d4641f44644949ee89ff98.tar.gz emacs-79d52eea3e6b77e383d4641f44644949ee89ff98.zip | |
* bytecomp.el: Declare unread-command-char an obsolete variable.
* bytecomp.el: (require 'backquote).
Diffstat (limited to 'lisp')
| -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 | ||