From c9fb27b6158811c59cc40b6a4e340279845bec3a Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Sun, 5 Oct 2014 18:06:42 +0900 Subject: [PATCH] emacs.el: Print msg when byte-compiling file by fetch-library --- emacs.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/emacs.el b/emacs.el index 0bda6bc..8fe817d 100644 --- a/emacs.el +++ b/emacs.el @@ -67,7 +67,11 @@ If FORCE-DOWNLOAD-P it t ignore exisiting library and always download." (require 'bytecomp nil t)) (and (file-exists-p (byte-compile-dest-file lpath)) (delete-file (byte-compile-dest-file lpath))) - (byte-compile-file lpath))) + (message "Byte-compiling %s..." + lpath) + (byte-compile-file lpath) + (message "Byte-compiling %s...done" + lpath))) (progn (and (file-writable-p lpath) (delete-file lpath)) (message "Downloading %s...failed"