diff options
| -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 @@ | |||
| 1 | ;;; Disassembler for compiled Emacs Lisp code | 1 | ;;; Disassembler for compiled Emacs Lisp code |
| 2 | ;;; Copyright (C) 1986 Free Software Foundation, Inc. | 2 | ;;; Copyright (C) 1986, 1991 Free Software Foundation, Inc. |
| 3 | ;;; Original version by Doug Cutting (doug@csli.stanford.edu) | 3 | ;;; Original version by Doug Cutting (doug@csli.stanford.edu) |
| 4 | ;;; Substantially modified by Jamie Zawinski <jwz@lucid.com> for | 4 | ;;; Substantially modified by Jamie Zawinski <jwz@lucid.com> for |
| 5 | ;;; the new lapcode-based byte compiler. | 5 | ;;; the new lapcode-based byte compiler. |
| @@ -23,8 +23,9 @@ | |||
| 23 | 23 | ||
| 24 | 24 | ||
| 25 | ;;; The variable byte-code-vector is defined by the new bytecomp.el. | 25 | ;;; The variable byte-code-vector is defined by the new bytecomp.el. |
| 26 | ;;; The function byte-decompile-lapcode is defined in byte-optimize.el. | 26 | ;;; The function byte-decompile-lapcode is defined in byte-opt.el. |
| 27 | (require 'byte-optimize) | 27 | ;;; Since we don't use byte-decompile-lapcode, let's try not loading byte-opt. |
| 28 | (require 'bytecomp) | ||
| 28 | 29 | ||
| 29 | (defvar disassemble-column-1-indent 5 "*") | 30 | (defvar disassemble-column-1-indent 5 "*") |
| 30 | (defvar disassemble-column-2-indent 10 "*") | 31 | (defvar disassemble-column-2-indent 10 "*") |