changeset 111290:33f46ffe4dad

* lisp/emacs-lisp/bytecomp.el (byte-recompile-file): Fix previous change.
author Glenn Morris <rgm@gnu.org>
date Sun, 31 Oct 2010 19:55:12 -0700
parents 7579acd0b490
children d3584b6b6247
files lisp/ChangeLog lisp/emacs-lisp/bytecomp.el
diffstat 2 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Sun Oct 31 19:51:59 2010 -0700
+++ b/lisp/ChangeLog	Sun Oct 31 19:55:12 2010 -0700
@@ -1,5 +1,7 @@
 2010-11-01  Glenn Morris  <rgm@gnu.org>
 
+	* emacs-lisp/bytecomp.el (byte-recompile-file): Fix previous change.
+
 	* startup.el (package-enable-at-startup, package-initialize):
 	Silence compiler.
 
--- a/lisp/emacs-lisp/bytecomp.el	Sun Oct 31 19:51:59 2010 -0700
+++ b/lisp/emacs-lisp/bytecomp.el	Sun Oct 31 19:55:12 2010 -0700
@@ -1631,7 +1631,7 @@
                                 bytecomp-filename "? "))))
         (progn
           (if (and noninteractive (not byte-compile-verbose))
-              (message "Compiling %s..." bytecomp-source))
+              (message "Compiling %s..." bytecomp-filename))
           (byte-compile-file bytecomp-filename load))
       (when load (load bytecomp-filename))
       'no-byte-compile)))
@@ -4349,5 +4349,4 @@
 
 (run-hooks 'bytecomp-load-hook)
 
-;; arch-tag: 9c97b0f0-8745-4571-bfc3-8dceb677292a
 ;;; bytecomp.el ends here