diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-02-02 01:21:18 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-02-02 01:21:18 +0000 |
commit | 74dfd056e487f4073f713a46cc89d4a7f39e8400 (patch) | |
tree | 72eee8c3eed3ebc960fa1091970c6cb68c73a695 /lisp/emacs-lisp/bytecomp.el | |
parent | 0b33ec466a843e68cbee19dd56a568bcdaf8637c (diff) | |
download | emacs-74dfd056e487f4073f713a46cc89d4a7f39e8400.tar.gz emacs-74dfd056e487f4073f713a46cc89d4a7f39e8400.tar.bz2 emacs-74dfd056e487f4073f713a46cc89d4a7f39e8400.zip |
(byte-compile-from-buffer): Bind edebug-all-defs and edebug-all-forms to nil.
Diffstat (limited to 'lisp/emacs-lisp/bytecomp.el')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 15e2d672525..51f7aa307be 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -4,13 +4,12 @@ ;; Author: Jamie Zawinski <jwz@lucid.com> ;; Hallvard Furuseth <hbf@ulrik.uio.no> +;; Maintainer: FSF ;; Keywords: lisp -;; Subsequently modified by RMS. - ;;; This version incorporates changes up to version 2.10 of the ;;; Zawinski-Furuseth compiler. -(defconst byte-compile-version "$Revision: 2.35 $") +(defconst byte-compile-version "$Revision: 2.36 $") ;; This file is part of GNU Emacs. @@ -1381,6 +1380,10 @@ With argument, insert value in current buffer after the form." (case-fold-search nil) (print-length nil) (print-level nil) + ;; Prevent edebug from interfering when we compile + ;; and put the output into a file. + (edebug-all-defs nil) + (edebug-all-forms nil) ;; Simulate entry to byte-compile-top-level (byte-compile-constants nil) (byte-compile-variables nil) |