mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-14 12:31:25 +00:00
Unpreload package-activate-all
See <https://debbugs.gnu.org/80079#49> for my reasoning. * lisp/emacs-lisp/package-activate.el (package-activate-all): Unpreload.
This commit is contained in:
parent
f20e3e473d
commit
0c51be894f
1 changed files with 1 additions and 2 deletions
|
|
@ -431,7 +431,6 @@ Newer versions are always activated, regardless of FORCE."
|
|||
"Non-nil if `package-activate-all' has been run.")
|
||||
|
||||
;;;###autoload
|
||||
(progn ;; Make the function usable without loading `package.el'.
|
||||
(defun package-activate-all ()
|
||||
"Activate all installed packages.
|
||||
The variable `package-load-list' controls which packages to load."
|
||||
|
|
@ -460,7 +459,7 @@ The variable `package-load-list' controls which packages to load."
|
|||
;; `declare-function' is currently not scoped, so if we use
|
||||
;; it here, we end up with a redefinition warning instead :-)
|
||||
(with-no-warnings
|
||||
(package--activate-all)))))))
|
||||
(package--activate-all))))))
|
||||
|
||||
(defun package--activate-all ()
|
||||
(dolist (elt (package--alist))
|
||||
|
|
|
|||
Loading…
Reference in a new issue