Fix wrong-type-arg error on 'doom compile'

This commit is contained in:
Henrik Lissner 2020-10-14 01:37:47 -04:00
parent d105a0400c
commit 23c36a2feb
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -249,8 +249,9 @@ those directories. The first returned path is always `doom-private-dir'."
:type 'dirs
:mindepth 1
:depth 1)))
(cl-loop for plist being the hash-values of doom-modules
collect (plist-get plist :path)))
(delq
nil (cl-loop for plist being the hash-values of doom-modules
collect (plist-get plist :path)) ))
nil))
(defun doom-module-mplist-map (fn mplist)