mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-08 13:19:36 +00:00
Only add :ensure nil on :load-path if use-package-always-ensure is t
This commit is contained in:
parent
35f46f7b42
commit
3cb64648fc
1 changed files with 2 additions and 1 deletions
|
@ -1765,7 +1765,8 @@ this file. Usage:
|
|||
(not (memq :defer args)))
|
||||
(append args '(:demand t))
|
||||
args)))
|
||||
(when (and (plist-member args* :load-path)
|
||||
(when (and use-package-always-ensure
|
||||
(plist-member args* :load-path)
|
||||
(not (plist-member args* :ensure)))
|
||||
(plist-put args* :ensure nil))
|
||||
(unless (plist-member args* :init)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue