cl-remove-if -> cl-delete-if
Minor optimization for doom-load-packages-incrementally (cl-delete-if deletes in-place).
This commit is contained in:
parent
f994fb07bf
commit
cae5009925
1 changed files with 1 additions and 1 deletions
|
@ -351,7 +351,7 @@ intervals."
|
|||
(when packages
|
||||
(let ((gc-cons-threshold doom-gc-cons-upper-limit)
|
||||
file-name-handler-alist)
|
||||
(let* ((reqs (cl-remove-if #'featurep packages))
|
||||
(let* ((reqs (cl-delete-if #'featurep packages))
|
||||
(req (ignore-errors (pop reqs))))
|
||||
(when req
|
||||
(when doom-debug-mode
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue