diff options
| author | Astounds <kirito@disroot.org> | 2026-08-07 15:19:06 -0500 |
|---|---|---|
| committer | Astounds <kirito@disroot.org> | 2026-08-07 15:19:06 -0500 |
| commit | e90e5cfbc6ca58c26a91a6b449b017b1102069be (patch) | |
| tree | f45d35fd33f8affc6da3b4f46586a338bf9b8b69 /modules/init-elpa.el | |
| parent | ff938e4c81f9778dcfa33597086e7726370cc384 (diff) | |
| download | emacs-personal-e90e5cfbc6ca58c26a91a6b449b017b1102069be.tar.lz emacs-personal-e90e5cfbc6ca58c26a91a6b449b017b1102069be.tar.xz emacs-personal-e90e5cfbc6ca58c26a91a6b449b017b1102069be.zip | |
fix: emacs 27 TLS failure and package bootstrap
Extend GnuTLS TLS 1.3 workaround to Emacs < 28, fix use-package
archive check in init-elpa.el,
Diffstat (limited to 'modules/init-elpa.el')
| -rw-r--r-- | modules/init-elpa.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/init-elpa.el b/modules/init-elpa.el index 16756fe..56a4e55 100644 --- a/modules/init-elpa.el +++ b/modules/init-elpa.el @@ -26,11 +26,10 @@ (setq package-native-compile t) (setq package-check-signature 'allow-unsigned) -(setq read-process-output-max (* 1024 1024)) (package-initialize) (unless (package-installed-p 'use-package) - (unless (assoc 'melpa package-archives) + (unless (assoc 'use-package package-archive-contents) (package-refresh-contents)) (package-install 'use-package)) |
