* lisp/gnus/message.el (message-use-alternative-email-as-from):
Don't add a "," at the start of the address if the To header
doesn't exist (bug#34293).
(emails
(message-tokenize-header
(mail-strip-quoted-names
- (mapconcat 'message-fetch-reply-field fields ","))))
+ (mapconcat
+ #'identity
+ (cl-loop for field in fields
+ for value = (message-fetch-reply-field field)
+ when value
+ collect value)
+ ","))))
(email
(cond ((functionp message-alternative-emails)
(car (cl-remove-if-not message-alternative-emails emails)))