(mail-send): Use [[:space:]] instead of a literal blank
when splitting new-header-values.
This commit is contained in:
parent
6e50f7e0d1
commit
6f0de615c1
1 changed files with 2 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue