From e9baf31d36718fe03d3ae47da5f969ff638e4621 Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Thu, 15 Sep 2011 22:05:03 +0200 Subject: [PATCH] Fix a bug in el-get-init-and-install. We were failing to find the package in the list of packages to init and so considered them for installation again. As el-get-install will respect the current package status, that would result in the package not being initialized at startup. Bug found while reading the code to prepare the 3.1 release. --- el-get.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/el-get.el b/el-get.el index 0b804b5a..52885bc1 100644 --- a/el-get.el +++ b/el-get.el @@ -3553,7 +3553,7 @@ considered \"required\"." (el-get-as-symbol p))))) (to-install (if packages (loop for p in packages - unless (member (el-get-as-symbol p) to-init) + unless (member (el-get-as-string p) to-init) collect (el-get-as-string p)) required)) done)