mirror of
https://github.com/git/git.git
synced 2024-11-20 04:24:01 +01:00
git-send-email: add rfc2047 quoting for "=?"
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>
This commit is contained in:
parent
ce5478006c
commit
ce1459f740
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user