diff options
| author | Markus Rost | 1998-12-05 18:18:50 +0000 |
|---|---|---|
| committer | Markus Rost | 1998-12-05 18:18:50 +0000 |
| commit | c144230d0c17c175c6291f3a7fc1817c3caef18e (patch) | |
| tree | 7cac2520dbad36ba9ad3bd0f6cfe3da432bd2018 | |
| parent | f407ae306dfa1d7221229c4d131403b20477ab9d (diff) | |
| download | emacs-c144230d0c17c175c6291f3a7fc1817c3caef18e.tar.gz emacs-c144230d0c17c175c6291f3a7fc1817c3caef18e.zip | |
Require bytecomp for byte-goto-ops.
| -rw-r--r-- | lisp/emacs-lisp/byte-opt.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/byte-opt.el b/lisp/emacs-lisp/byte-opt.el index a279c018e70..77997f4894a 100644 --- a/lisp/emacs-lisp/byte-opt.el +++ b/lisp/emacs-lisp/byte-opt.el | |||
| @@ -183,6 +183,8 @@ | |||
| 183 | 183 | ||
| 184 | ;;; Code: | 184 | ;;; Code: |
| 185 | 185 | ||
| 186 | (require 'bytecomp) | ||
| 187 | |||
| 186 | (defun byte-compile-log-lap-1 (format &rest args) | 188 | (defun byte-compile-log-lap-1 (format &rest args) |
| 187 | (if (aref byte-code-vector 0) | 189 | (if (aref byte-code-vector 0) |
| 188 | (error "The old version of the disassembler is loaded. Reload new-bytecomp as well.")) | 190 | (error "The old version of the disassembler is loaded. Reload new-bytecomp as well.")) |