]> git.eshelyaron.com Git - emacs.git/commitdiff
(byte-compile-file): Bind `byte-compile-last-logged-file' to nil.
authorMiles Bader <miles@gnu.org>
Mon, 23 Oct 2000 10:27:47 +0000 (10:27 +0000)
committerMiles Bader <miles@gnu.org>
Mon, 23 Oct 2000 10:27:47 +0000 (10:27 +0000)
lisp/ChangeLog
lisp/emacs-lisp/bytecomp.el

index c6af44f9d3c79561a79f20f11e8a102964369ad4..cbb8d824c281c66bc70e8ac075aff0cbb1750e6c 100644 (file)
@@ -8,6 +8,7 @@
        `byte-compile-last-logged-file' to it.  Test whether
        byte-compile-current-file equals byte-compile-last-logged-file
        instead of whether its nil.
+       (byte-compile-file): Bind `byte-compile-last-logged-file' to nil.
 
 2000-10-23  Stefan Monnier  <monnier@cs.yale.edu>
 
index bd8cd8c88afa8d0774425ab0293db39a42240d93..1c75f5e5736a740eb3cb6a030e3e0bd04aa4dd07 100644 (file)
@@ -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)