From: Junio C Hamano Date: Tue, 30 Jan 2007 10:22:37 +0000 (-0800) Subject: git-send-email: remove debugging output. X-Git-Tag: v1.5.0-rc3~16 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3740b04f6c1dd485a8e717ed6d8c516cedc27063;p=git.git git-send-email: remove debugging output. rfc2047 unquoter spitted out an annoying "- unquoted" which was added during debugging but I forgot to remove. Signed-off-by: Junio C Hamano --- diff --git a/git-send-email.perl b/git-send-email.perl index 8dc2ee0cf..6a285bfd2 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -408,7 +408,7 @@ sub unquote_rfc2047 { s/_/ /g; s/=([0-9A-F]{2})/chr(hex($1))/eg; } - return "$_ - unquoted"; + return "$_"; } sub send_message