diff options
author | Jim Blandy <jimb@redhat.com> | 1992-07-16 21:22:55 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-07-16 21:22:55 +0000 |
commit | c29118da51e3889045dc4e4ef851c5c07ef7a2b2 (patch) | |
tree | 8190784814c61aa855eb431af60a64c7ce039ea7 /lisp/emacs-lisp/disass.el | |
parent | 5de9bdab599702c7608ac753c2bf05e313e02d08 (diff) | |
download | emacs-c29118da51e3889045dc4e4ef851c5c07ef7a2b2.tar.gz |
*** empty log message ***
Diffstat (limited to 'lisp/emacs-lisp/disass.el')
-rw-r--r-- | lisp/emacs-lisp/disass.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/disass.el b/lisp/emacs-lisp/disass.el index 52ee8d61c3f..5b85791dea1 100644 --- a/lisp/emacs-lisp/disass.el +++ b/lisp/emacs-lisp/disass.el @@ -1,5 +1,5 @@ ;;; Disassembler for compiled Emacs Lisp code -;;; Copyright (C) 1986 Free Software Foundation, Inc. +;;; Copyright (C) 1986, 1991 Free Software Foundation, Inc. ;;; Original version by Doug Cutting (doug@csli.stanford.edu) ;;; Substantially modified by Jamie Zawinski <jwz@lucid.com> for ;;; the new lapcode-based byte compiler. @@ -23,8 +23,9 @@ ;;; The variable byte-code-vector is defined by the new bytecomp.el. -;;; The function byte-decompile-lapcode is defined in byte-optimize.el. -(require 'byte-optimize) +;;; The function byte-decompile-lapcode is defined in byte-opt.el. +;;; Since we don't use byte-decompile-lapcode, let's try not loading byte-opt. +(require 'bytecomp) (defvar disassemble-column-1-indent 5 "*") (defvar disassemble-column-2-indent 10 "*") |