diff options
author | Miles Bader <miles@gnu.org> | 2000-10-23 10:27:47 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2000-10-23 10:27:47 +0000 |
commit | 3b6542bab5e01948a157330c91c4aa273694fe66 (patch) | |
tree | 20ad15e98b80ab69df4b42bfe9140d5f7fb439d3 /lisp/emacs-lisp/bytecomp.el | |
parent | cb3069bb5e6a6c7b70d28e09c61ce9b9aea98537 (diff) | |
download | emacs-3b6542bab5e01948a157330c91c4aa273694fe66.tar.gz emacs-3b6542bab5e01948a157330c91c4aa273694fe66.tar.bz2 emacs-3b6542bab5e01948a157330c91c4aa273694fe66.zip |
(byte-compile-file): Bind `byte-compile-last-logged-file' to nil.
Diffstat (limited to 'lisp/emacs-lisp/bytecomp.el')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index bd8cd8c88af..1c75f5e5736 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -10,7 +10,7 @@ ;;; This version incorporates changes up to version 2.10 of the ;;; Zawinski-Furuseth compiler. -(defconst byte-compile-version "$Revision: 2.77 $") +(defconst byte-compile-version "$Revision: 2.78 $") ;; This file is part of GNU Emacs. @@ -1349,6 +1349,7 @@ The value is t if there were no errors, nil if errors." (if byte-compile-verbose (message "Compiling %s..." filename)) (let ((byte-compile-current-file filename) + (byte-compile-last-logged-file nil) (set-auto-coding-for-load t) target-file input-buffer output-buffer byte-compile-dest-file) |