Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
git-send-email: add rfc2047 quoting for "=?"
author
Krzysztof Mazur
<krzysiek@podlesie.net>
Wed, 24 Oct 2012 21:28:29 +0000
(23:28 +0200)
committer
Jeff King
<peff@peff.net>
Thu, 25 Oct 2012 10:06:00 +0000
(06:06 -0400)
For raw subjects rfc2047 quoting is needed not only for non-ASCII characters,
but also for any possible rfc2047 in it.
Signed-off-by: Krzysztof Mazur <krzysiek@podlesie.net>
Signed-off-by: Jeff King <peff@peff.net>
git-send-email.perl
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
ce54780
)
diff --git
a/git-send-email.perl
b/git-send-email.perl
index 1574675d1d5c0f057cac5bf0e139831495ab9565..5a7c29db9324df48c9da68b08a946e5a357f0a78 100755
(executable)
--- a/
git-send-email.perl
+++ b/
git-send-email.perl
@@
-908,7
+908,7
@@
sub is_rfc2047_quoted {
sub subject_needs_rfc2047_quoting {
my $s = shift;
- return ($s =~ /[^[:ascii:]]/);
+ return ($s =~ /[^[:ascii:]]/)
|| ($s =~ /=\?/)
;
}
sub quote_subject {