From 80a10f79db891990e3f26c2310f33e038d80303b Mon Sep 17 00:00:00 2001 From: syl20bnr Date: Thu, 11 Jan 2018 10:43:44 -0500 Subject: [PATCH] core: fix alphabetical order of package configuration loading It was reversed in commit https://github.com/syl20bnr/spacemacs/commit/e9fb5285f412613cff7c003662d59b03cd9c082e --- core/core-configuration-layer.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-configuration-layer.el b/core/core-configuration-layer.el index dd35c6d5f..6c2a9c3a5 100644 --- a/core/core-configuration-layer.el +++ b/core/core-configuration-layer.el @@ -1873,7 +1873,7 @@ RNAME is the name symbol of another existing layer." (push pkg packages-to-configure) (configuration-layer//pre-configure-package pkg))))))) ;; actually configure packages in alphabetical order - (mapc 'configuration-layer//configure-package packages-to-configure))) + (mapc 'configuration-layer//configure-package (reverse packages-to-configure)))) (defun configuration-layer/get-location-directory (pkg-name location owner) "Return the location on disk for PKG."