diff options
author | Markus Rost <rost@math.uni-bielefeld.de> | 1998-12-05 18:18:50 +0000 |
---|---|---|
committer | Markus Rost <rost@math.uni-bielefeld.de> | 1998-12-05 18:18:50 +0000 |
commit | c144230d0c17c175c6291f3a7fc1817c3caef18e (patch) | |
tree | 7cac2520dbad36ba9ad3bd0f6cfe3da432bd2018 /lisp/emacs-lisp/byte-opt.el | |
parent | f407ae306dfa1d7221229c4d131403b20477ab9d (diff) | |
download | emacs-c144230d0c17c175c6291f3a7fc1817c3caef18e.tar.gz |
Require bytecomp for byte-goto-ops.
Diffstat (limited to 'lisp/emacs-lisp/byte-opt.el')
-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 @@ ;;; Code: +(require 'bytecomp) + (defun byte-compile-log-lap-1 (format &rest args) (if (aref byte-code-vector 0) (error "The old version of the disassembler is loaded. Reload new-bytecomp as well.")) |