From 0c51be894f73597322adce4df9ec9b77f72b0292 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Thu, 7 May 2026 14:12:25 +0100 Subject: [PATCH] Unpreload package-activate-all See for my reasoning. * lisp/emacs-lisp/package-activate.el (package-activate-all): Unpreload. --- lisp/emacs-lisp/package-activate.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lisp/emacs-lisp/package-activate.el b/lisp/emacs-lisp/package-activate.el index f2d117cf44a..d79628b172b 100644 --- a/lisp/emacs-lisp/package-activate.el +++ b/lisp/emacs-lisp/package-activate.el @@ -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))