revert: fix: straight-built-in-pseudo-packages: add seq

Magit requires a newer version of seq than what's available on 28.x or
older or it spews out warnings.

Revert: bc634eaca0
This commit is contained in:
Henrik Lissner 2024-08-23 01:27:54 -04:00
parent ad26fcdbdd
commit ba01418652
No known key found for this signature in database
GPG key ID: B60957CA074D39A3

View file

@ -111,10 +111,7 @@ uses a straight or package.el command directly).")
;; changed afterwards.
(setq straight--native-comp-available nil)
;; `let-alist' is built into Emacs 26 and onwards
(add-to-list 'straight-built-in-pseudo-packages 'let-alist)
;; `seq' is built into all Emacs versions Doom supports, so avoid installing
;; newer (and possibly incompatible) versions of seq.
(add-to-list 'straight-built-in-pseudo-packages 'seq))
(add-to-list 'straight-built-in-pseudo-packages 'let-alist))
(defadvice! doom--read-pinned-packages-a (fn &rest args)
"Read `:pin's in `doom-packages' on top of straight's lockfiles."
@ -143,7 +140,8 @@ uses a straight or package.el command directly).")
(after! comp
;; HACK Disable native-compilation for some troublesome packages
(mapc (doom-partial #'add-to-list 'native-comp-deferred-compilation-deny-list)
(list "/emacs-jupyter.*\\.el\\'"
(list "/seq-tests\\.el\\'"
"/emacs-jupyter.*\\.el\\'"
"/evil-collection-vterm\\.el\\'"
"/vterm\\.el\\'"
"/with-editor\\.el\\'"))))