From 9a06b0d59aa398c5372acaed7483048df5bc39fb Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Wed, 28 Nov 2012 16:55:33 +0900 Subject: [PATCH] update message --- emacs.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/emacs.el b/emacs.el index 25bf5e4..a66246f 100644 --- a/emacs.el +++ b/emacs.el @@ -49,11 +49,12 @@ otherwise the path where the library installed." (locate-p (locate-library lib))) (if (or force-download-p (not locate-p)) (progn (condition-case nil - (progn (message "downloading %s..." url) + (progn (message "Downloading %s..." url) (require 'url) (url-copy-file url lpath t) + (message "Downloading %s...done") (when (and byte-compile-p (require 'bytecomp nil t)) (and (file-exists-p (byte-compile-dest-file lpath)) @@ -62,7 +63,7 @@ otherwise the path where the library installed." ) (error (and (file-writable-p lpath) (delete-file lpath)) - (message "downloading %s...something wrong happened!" + (message "Downloading %s...failed" url) nil)) (locate-library lib))