From: Glenn Morris Date: Mon, 1 Nov 2010 02:55:12 +0000 (-0700) Subject: * lisp/emacs-lisp/bytecomp.el (byte-recompile-file): Fix previous change. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~45^2~422^2~15 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=feb5e60ae796691a61e9a4078a0dff0111fcae31;p=emacs.git * lisp/emacs-lisp/bytecomp.el (byte-recompile-file): Fix previous change. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 45bee01c97d..6a2df683e40 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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 --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 5afe49346b5..952b69f7ce3 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -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