branch: elpa-admin commit aa90a71fb59720d2b89f6c72c9665a074110b52d Author: Stefan Monnier <monn...@iro.umontreal.ca> Commit: Stefan Monnier <monn...@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)))