From 19899dac82a2d4080388f69e4c6c20456c4852e6 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 28 Aug 2019 20:14:12 -0400 Subject: [PATCH] Fix inverted condition in package-archives assembly --- core/core-packages.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-packages.el b/core/core-packages.el index 9c68f6355..39dd4aa7d 100644 --- a/core/core-packages.el +++ b/core/core-packages.el @@ -79,7 +79,7 @@ missing) and shouldn't be deleted.") ;; I omit Marmalade because its packages are manually submitted rather ;; than pulled, so packages are often out of date with upstream. package-archives - (let ((proto (if gnutls-verify-error "http" "https"))) + (let ((proto (if gnutls-verify-error "https" "http"))) `(("gnu" . ,(concat proto "://elpa.gnu.org/packages/")) ("melpa" . ,(concat proto "://melpa.org/packages/")) ("org" . ,(concat proto "://orgmode.org/elpa/")))))