Fix :defer-incrementally t
Should be the same as :defer-incrementally (<package-name>)
This commit is contained in:
parent
9726a982d1
commit
75ad188e01
2 changed files with 4 additions and 4 deletions
|
@ -216,9 +216,9 @@ non-nil, return paths of possible modules, activated or otherwise."
|
|||
(defun use-package-handler/:defer-incrementally (name _keyword targets rest state)
|
||||
(use-package-concat
|
||||
`((doom-load-packages-incrementally
|
||||
',(if (listp targets)
|
||||
targets
|
||||
(list name))))
|
||||
',(if (equal targets '(t))
|
||||
(list name)
|
||||
targets)))
|
||||
(use-package-process-keywords name rest state)))
|
||||
|
||||
(defalias 'use-package-normalize/:after-call 'use-package-normalize-symlist)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue