This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
DamienCassou
/
khardel
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
1
Wiki
Activity
Browse Source
Add double-quotes around person name
The double-quotes are important when sending an email in case the person name contains a comma.
pull/3/head
Damien Cassou
2 years ago
parent
60f139c3fc
commit
78181e4b5f
Signed by:
DamienCassou
GPG Key ID:
B68746238E59B548
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
khardel.el
+ 1
- 1
khardel.el
View File
@ -61,7 +61,7 @@
(
goto-char
(
point-min
)
)
(
cl-loop
while
(
re-search-forward
"
^
\\
([^
\t
\n
]*
\\
)
\t
\\
([^
\t
\n
]*
\\
)
\t
.*$
"
nil
t
)
collect
(
format
"
%s <%s>
"
(
match-string
2
)
(
match-string
1
)
)
)
)
)
)
collect
(
format
"
\"
%s
\"
<%s>
"
(
match-string
2
)
(
match-string
1
)
)
)
)
)
)
(
defun
khardel--list-emails
(
)
"
Return a list of strings of the form
\"
Name <email>
\"
.
"
Write
Preview
Loading…
Cancel
Save