mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-16 00:40:06 +00:00
* lisp/emacs-lisp/package.el (package-activate-all): Fix last change
This commit is contained in:
parent
08634efb6a
commit
1b6ef26eb6
1 changed files with 3 additions and 1 deletions
|
@ -1492,7 +1492,9 @@ The variable `package-load-list' controls which packages to load."
|
|||
;; any decoding).
|
||||
(let ((load-source-file-function nil))
|
||||
(load package-quickstart-file nil 'nomessage))
|
||||
(dolist (elt (package--alist))
|
||||
(unless package--initialized
|
||||
(package-initialize t))
|
||||
(dolist (elt package-alist)
|
||||
(condition-case err
|
||||
(package-activate (car elt))
|
||||
;; Don't let failure of activation of a package arbitrarily stop
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue