Mercurial > emacs
changeset 20818:732ffd28a863
(byte-compile-from-buffer): Bind edebug-all-defs and edebug-all-forms to nil.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 02 Feb 1998 01:21:18 +0000 |
parents | 297fefd12ecf |
children | 735a0243ce6f |
files | lisp/emacs-lisp/bytecomp.el |
diffstat | 1 files changed, 6 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/bytecomp.el Mon Feb 02 01:12:18 1998 +0000 +++ b/lisp/emacs-lisp/bytecomp.el Mon Feb 02 01:21:18 1998 +0000 @@ -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 @@ (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)