emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] elpa-admin cb24ed1: * elpa-admin.el (elpaa--html-make-pkg): Don't


From: Stefan Monnier
Subject: [elpa] elpa-admin cb24ed1: * elpa-admin.el (elpaa--html-make-pkg): Don't burp if there's no maintainer
Date: Sun, 10 Oct 2021 12:36:39 -0400 (EDT)

branch: elpa-admin
commit cb24ed167b628106ebc5989a0e5a18c67ec5f994
Author: Stefan Monnier <monnier@iro.umontreal.ca>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>

    * elpa-admin.el (elpaa--html-make-pkg): Don't burp if there's no maintainer
---
 elpa-admin.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/elpa-admin.el b/elpa-admin.el
index 61918b6..272dc88 100644
--- a/elpa-admin.el
+++ b/elpa-admin.el
@@ -1407,7 +1407,9 @@ arbitrary code."
                         (setq maint (concat (if (car maint) (concat (car 
maint) " "))
                                             "<" (cdr maint) ">")))
                       (elpaa--html-quote maint))
-                    (if (consp (car-safe maints)) maints (list maints))
+                    (if (or (null maints) (consp (car-safe maints)))
+                        maints
+                      (list maints))
                     ", ")
          "</dd>\n"))
       (elpaa--insert-repolinks



reply via email to

[Prev in Thread] Current Thread [Next in Thread]