branch: elpa-admin commit b84cae0b551462974350fa0e76a0a8e548cdf20f Author: Dmitry Gutov <dgu...@yandex.ru> Commit: Dmitry Gutov <dgu...@yandex.ru>
* archive-contents.el (archive--simple-package-p): Quote the keywords list (Bug#16222). --- admin/archive-contents.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/archive-contents.el b/admin/archive-contents.el index 8019bf7..e17883e 100644 --- a/admin/archive-contents.el +++ b/admin/archive-contents.el @@ -197,7 +197,7 @@ Otherwise, return nil." (list simple version description req ;; extra parameters (list (cons :url url) - (cons :keywords keywords))))))) + (cons :keywords (list 'quote keywords)))))))) ((not (file-exists-p pkg-file)) (error "Can find single file nor package desc file in %s" dir)))))