# HG changeset patch # User Miles Bader # Date 972296759 0 # Node ID f11890c9f7dfcb642366d2c365a16c843d782e8f # Parent 3cd5f44afd0d8fce342b3083d334ed5a9c423035 (byte-compile-file): Bind `byte-compile-last-logged-file' to nil. diff -r 3cd5f44afd0d -r f11890c9f7df lisp/emacs-lisp/bytecomp.el --- a/lisp/emacs-lisp/bytecomp.el Mon Oct 23 09:16:47 2000 +0000 +++ b/lisp/emacs-lisp/bytecomp.el Mon Oct 23 10:25:59 2000 +0000 @@ -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 @@ (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)