Fix #3406: max-lisp-eval-depth on startup

Due to version conflicts between the built-in seq library and the one
installed from upstream.

Revert once raxod502/straight.el#537 is resolved.
This commit is contained in:
Henrik Lissner 2020-06-18 14:55:18 -04:00
parent 2dd849e5f9
commit 33cd8e7380
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -105,6 +105,12 @@ uses a straight or package.el command directly).")
(append (apply orig-fn args) ; lockfiles still take priority (append (apply orig-fn args) ; lockfiles still take priority
(doom-package-pinned-list))) (doom-package-pinned-list)))
(with-eval-after-load 'straight
;; HACK Fix #3406: by installing some built-in packages, we get version
;; conflicts, so blacklist them. Revert once raxod502/straight.el#537 is
;; resolved.
(add-to-list 'straight-recipes-gnu-elpa-ignored-packages 'seq))
;; ;;
;;; Bootstrappers ;;; Bootstrappers