; Properly initialize 'package-load-list' for 'package-isolate'

* lisp/emacs-lisp/package.el (package-isolate): Use the right
variable to initialize 'package-load-list' in the subprocess.
This should have been changed in c8d19034a.
This commit is contained in:
Philip Kaludercic 2026-08-09 10:17:42 +02:00
parent effafd92e0
commit 65eff4fd4f
No known key found for this signature in database

View file

@ -2708,7 +2708,7 @@ intended for testing Emacs and/or the packages in a clean environment."
(append (list package-user-dir)
temp-install-dir
package-directory-list))
(setq package-load-list ',package-load-list)
(setq package-load-list ',load-list)
(package--activate-all)))))))