1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-16 17:19:41 +00:00

(mail-send): Use [[:space:]] instead of a literal blank

when splitting new-header-values.
This commit is contained in:
Eli Zaretskii 2005-05-21 11:48:00 +00:00
parent 6e50f7e0d1
commit 6f0de615c1

View File

@ -810,7 +810,8 @@ the user from the mailer."
'(lambda (e)
(unless (member e l)
(push e l)))
(split-string new-header-values ", +" t))
(split-string new-header-values
",[[:space:]]+" t))
(mapconcat 'identity l ", "))
"\n"))
;; Add Mail-Reply-To if none yet