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

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

[elpa] elpa-admin aa90a71fb5: * elpa-admin.el (elpaa--release-email): Do


From: Stefan Monnier
Subject: [elpa] elpa-admin aa90a71fb5: * elpa-admin.el (elpaa--release-email): Don't burp on empty name
Date: Mon, 21 Feb 2022 10:29:05 -0500 (EST)

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

    * elpa-admin.el (elpaa--release-email): Don't burp on empty name
---
 elpa-admin.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/elpa-admin.el b/elpa-admin.el
index 8b7ec1993a..750dbe9a98 100644
--- a/elpa-admin.el
+++ b/elpa-admin.el
@@ -2008,7 +2008,8 @@ If WITH-CORE is non-nil, it means we manage :core 
packages as well."
                               (progn
                                 (message "Error, no email address: %S" x)
                                 nil)
-                            (while (string-match "[<@>,]" name)
+                            (while (and (stringp name)
+                                        (string-match "[<@>,]" name))
                               (message "Error, weird char \"%s\" in name: %S"
                                        (match-string 0 name) name)
                               (setq name (replace-match " " t t name)))



reply via email to

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