Remove doom-psuedo-modules-dir

Not needed with now that doom-private-dir has first class support.
This commit is contained in:
Henrik Lissner 2018-06-01 17:01:39 +02:00
parent fd95bfee07
commit 6bad6d12f3
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
2 changed files with 4 additions and 11 deletions

View file

@ -157,8 +157,7 @@ modified."
;; Replace autoload paths (only for module autoloads) with
;; absolute paths for faster resolution during load and
;; simpler `load-path'
(let ((load-path (append doom-psuedo-module-dirs
doom-modules-dirs
(let ((load-path (append doom-modules-dirs
load-path))
cache)
(save-excursion
@ -367,7 +366,7 @@ module. This does not include your byte-compiled, third party packages.'"
(interactive)
(cl-loop with default-directory = doom-emacs-dir
for path in (append (doom-files-in doom-emacs-dir :match "\\.elc$" :depth 1)
(doom-files-in doom-psuedo-module-dirs :match "\\.elc$" :depth 1)
(doom-files-in doom-private-dir :match "\\.elc$" :depth 1)
(doom-files-in doom-core-dir :match "\\.elc$")
(doom-files-in doom-modules-dirs :match "\\.elc$" :depth 4))
for truepath = (file-truename path)