Fix void-variable comp-eln-load-path error
For users on older versions of gccemacs.
This commit is contained in:
parent
295f8066be
commit
a2da5d7a6f
1 changed files with 2 additions and 1 deletions
|
@ -276,7 +276,8 @@ config.el instead."
|
||||||
(setq comp-deferred-compilation nil)
|
(setq comp-deferred-compilation nil)
|
||||||
;; Don't store eln files in ~/.emacs.d; it's likely to be purged when
|
;; Don't store eln files in ~/.emacs.d; it's likely to be purged when
|
||||||
;; upgrading Doom.
|
;; upgrading Doom.
|
||||||
(add-to-list 'comp-eln-load-path (concat doom-cache-dir "eln/"))
|
(when (boundp 'comp-eln-load-path)
|
||||||
|
(add-to-list 'comp-eln-load-path (concat doom-cache-dir "eln/")))
|
||||||
;; HACK Disable native-compilation for some troublesome packages
|
;; HACK Disable native-compilation for some troublesome packages
|
||||||
(add-to-list 'comp-deferred-compilation-black-list "/evil-collection-vterm\\.el\\'"))
|
(add-to-list 'comp-deferred-compilation-black-list "/evil-collection-vterm\\.el\\'"))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue