mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-09 07:40:39 -08:00
Fix oversight in package-load-list handling.
* lisp/emacs-lisp/package.el (package-compute-transaction): Handle holding a package version to t in package-load-list.
This commit is contained in:
parent
530739c909
commit
8ac9e52930
2 changed files with 7 additions and 1 deletions
|
|
@ -750,7 +750,8 @@ not included in this list."
|
|||
hold)
|
||||
(when (setq hold (assq next-pkg package-load-list))
|
||||
(setq hold (cadr hold))
|
||||
(cond ((eq hold nil)
|
||||
(cond ((eq hold t))
|
||||
((eq hold nil)
|
||||
(error "Required package '%s' is disabled"
|
||||
(symbol-name next-pkg)))
|
||||
((null (stringp hold))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue