summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f830641)
raw | patch | inline | side by side (parent: f830641)
author | Junio C Hamano <junkio@cox.net> | |
Tue, 30 Jan 2007 10:22:37 +0000 (02:22 -0800) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Tue, 30 Jan 2007 10:30:25 +0000 (02:30 -0800) |
rfc2047 unquoter spitted out an annoying "- unquoted" which was
added during debugging but I forgot to remove.
Signed-off-by: Junio C Hamano <junkio@cox.net>
added during debugging but I forgot to remove.
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-send-email.perl | patch | blob | history |
diff --git a/git-send-email.perl b/git-send-email.perl
index 8dc2ee0cf7461ace62c5ef7afac6dedc7814ddfb..6a285bfd214132f792f7493433a52019ba80b5ab 100755 (executable)
--- a/git-send-email.perl
+++ b/git-send-email.perl
s/_/ /g;
s/=([0-9A-F]{2})/chr(hex($1))/eg;
}
- return "$_ - unquoted";
+ return "$_";
}
sub send_message