summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/bytecomp.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2010-10-31 19:55:12 -0700
committerGlenn Morris <rgm@gnu.org>2010-10-31 19:55:12 -0700
commitfeb5e60ae796691a61e9a4078a0dff0111fcae31 (patch)
tree7c2dd0f23597ee7897fc184b59714728af28a0fa /lisp/emacs-lisp/bytecomp.el
parent1f023ca9aea39dcb14d3ec5f6dee43303419700e (diff)
downloademacs-feb5e60ae796691a61e9a4078a0dff0111fcae31.tar.gz
emacs-feb5e60ae796691a61e9a4078a0dff0111fcae31.tar.bz2
emacs-feb5e60ae796691a61e9a4078a0dff0111fcae31.zip
* lisp/emacs-lisp/bytecomp.el (byte-recompile-file): Fix previous change.
Diffstat (limited to 'lisp/emacs-lisp/bytecomp.el')
-rw-r--r--lisp/emacs-lisp/bytecomp.el3
1 files changed, 1 insertions, 2 deletions
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