Skip to content

Commit

Permalink
Move seq fix for bootstrapping issue
Browse files Browse the repository at this point in the history
  • Loading branch information
purcell committed Nov 2, 2023
1 parent a108411 commit cdaf016
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
5 changes: 0 additions & 5 deletions init.el
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,6 @@
;; Allow users to provide an optional "init-preload-local.el"
(require 'init-preload-local nil t)

;; Work around an issue in Emacs 29 where this gets implicitly
;; reinstalled via the rg -> transient dependency chain, but fails to
;; reload cleanly, breaking first-time start-up
(require-package 'seq "2.24")

;; Load configs for specific features and modes
(require-package 'diminish)
(maybe-require-package 'scratch)
Expand Down
5 changes: 5 additions & 0 deletions lisp/init-elpa.el
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,11 @@ advice for `require-package', to which ARGS are passed."

(advice-add 'require-package :around 'sanityinc/note-selected-package)

;; Work around an issue in Emacs 29 where this gets implicitly
;; reinstalled via the rg -> transient dependency chain, but fails to
;; reload cleanly, breaking first-time start-up
(require-package 'seq "2.24")

(when (fboundp 'package--save-selected-packages)
(require-package 'seq)
(add-hook 'after-init-hook
Expand Down

0 comments on commit cdaf016

Please sign in to comment.