# HG changeset patch # User Glenn Morris # Date 1288580112 25200 # Node ID 33f46ffe4dad2ff42c4005643d778d3a2c02141c # Parent 7579acd0b490d132ebdc67895863ae85a469ae34 * lisp/emacs-lisp/bytecomp.el (byte-recompile-file): Fix previous change. diff -r 7579acd0b490 -r 33f46ffe4dad lisp/ChangeLog --- 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 + * emacs-lisp/bytecomp.el (byte-recompile-file): Fix previous change. + * startup.el (package-enable-at-startup, package-initialize): Silence compiler. diff -r 7579acd0b490 -r 33f46ffe4dad lisp/emacs-lisp/bytecomp.el --- 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