]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/bytecomp.el (byte-recompile-file): Fix previous change.
authorGlenn Morris <rgm@gnu.org>
Mon, 1 Nov 2010 02:55:12 +0000 (19:55 -0700)
committerGlenn Morris <rgm@gnu.org>
Mon, 1 Nov 2010 02:55:12 +0000 (19:55 -0700)
lisp/ChangeLog
lisp/emacs-lisp/bytecomp.el

index 45bee01c97d245c65313c6a5bef08179ab4c0556..6a2df683e40bcace4c892ef72fd5ef8d628e917c 100644 (file)
@@ -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.
 
index 5afe49346b5c07441c555f15a42c383fe5a33d9f..952b69f7ce3b447dc61c0208c9103a8c7ff6a895 100644 (file)
@@ -1631,7 +1631,7 @@ or 'no-byte-compile if the file did not need recompilation."
                                 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 @@ and corresponding effects."
 
 (run-hooks 'bytecomp-load-hook)
 
-;; arch-tag: 9c97b0f0-8745-4571-bfc3-8dceb677292a
 ;;; bytecomp.el ends here