branch: elpa-admin
commit 3165af29ea66a0c3354e30716470a0cc804f8799
Author: Stefan Monnier <monn...@iro.umontreal.ca>
Commit: Stefan Monnier <monn...@iro.umontreal.ca>

    * elpa-admin.el (elpaa--release-email): `message` doesn't return nil
---
 elpa-admin.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

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

Reply via email to