summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorJan D <jan.h.d@swipnet.se>2015-03-28 12:15:18 +0100
committerJan D <jan.h.d@swipnet.se>2015-03-28 12:15:18 +0100
commit733a9f114cc7219a8380db84b05081f145a163ae (patch)
tree50df83c9e57f25e8af57dffc52b29e32bb3dbccb /lisp/emacs-lisp
parent7dc565a2cffeda8e7f5cf2806c056298e7907aba (diff)
downloademacs-733a9f114cc7219a8380db84b05081f145a163ae.tar.gz
emacs-733a9f114cc7219a8380db84b05081f145a163ae.tar.bz2
emacs-733a9f114cc7219a8380db84b05081f145a163ae.zip
Fixes: debbugs:17879
* lisp/emacs-lisp/package.el (package-refresh-contents): Add a message at the end so it does not appear to have hanged.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/package.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el
index 0d001bff4cf..d34dfbc0475 100644
--- a/lisp/emacs-lisp/package.el
+++ b/lisp/emacs-lisp/package.el
@@ -1717,7 +1717,8 @@ and make them available for download."
(error (message "Failed to download `%s' archive."
(car archive)))))
(package-read-all-archive-contents)
- (package--build-compatibility-table))
+ (package--build-compatibility-table)
+ (message "Package refersh done"))
(defun package--find-non-dependencies ()
"Return a list of installed packages which are not dependencies.