branch: elpa-admin
commit baf79bb898691722e3ebbd6bad964fdda71c4484
Author: Stefan Monnier <[email protected]>
Commit: Stefan Monnier <[email protected]>

    (elpaa--publish-package-specs): Use symbols for pkg names
    
    This will soon be changed for `elpa-packages` as well.
    Makes it more consistent with the format of `archive-contents`.
---
 elpa-admin.el | 1 +
 1 file changed, 1 insertion(+)

diff --git a/elpa-admin.el b/elpa-admin.el
index f4f8809b1d..d2be485354 100644
--- a/elpa-admin.el
+++ b/elpa-admin.el
@@ -844,6 +844,7 @@ SPECS is the list of package specifications."
             (lambda (spec)
               (pcase spec
                 (`(,name :url nil . ,rest)
+                 (if (stringp name) (setq name (intern name)))
                  `((,name :url ,(concat "https://git.sv.gnu.org/git/"; 
elpaa--gitrepo)
                           :branch ,(concat elpaa--branch-prefix (car spec))
                           ,@rest)))

Reply via email to