aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2019-01-14 15:10:14 -0500
committerStefan Monnier2019-01-14 15:10:14 -0500
commit08634efb6ab1dd43f8818b6b2aeb31ba48cabcf0 (patch)
tree9a71ad03dd249b5ced5aa182971f6036254cecb8
parentcdb082322d4209c5104bc1a98b21bf3dd75e8f17 (diff)
downloademacs-08634efb6ab1dd43f8818b6b2aeb31ba48cabcf0.tar.gz
emacs-08634efb6ab1dd43f8818b6b2aeb31ba48cabcf0.zip
* lisp/emacs-lisp/package.el (package-activate-all): Silence load msg
-rw-r--r--lisp/emacs-lisp/package.el6
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el
index cf39fa2896c..1c64f5e4a8d 100644
--- a/lisp/emacs-lisp/package.el
+++ b/lisp/emacs-lisp/package.el
@@ -1491,10 +1491,8 @@ The variable `package-load-list' controls which packages to load."
1491 ;; 2 (this assumes we were careful to save this file so it doesn't need 1491 ;; 2 (this assumes we were careful to save this file so it doesn't need
1492 ;; any decoding). 1492 ;; any decoding).
1493 (let ((load-source-file-function nil)) 1493 (let ((load-source-file-function nil))
1494 (load package-quickstart-file)) 1494 (load package-quickstart-file nil 'nomessage))
1495 (unless package--initialized 1495 (dolist (elt (package--alist))
1496 (package-initialize t))
1497 (dolist (elt package-alist)
1498 (condition-case err 1496 (condition-case err
1499 (package-activate (car elt)) 1497 (package-activate (car elt))
1500 ;; Don't let failure of activation of a package arbitrarily stop 1498 ;; Don't let failure of activation of a package arbitrarily stop