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:
parent
6e50f7e0d1
commit
6f0de615c1
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user