On Sun, Dec 09, 2007 at 10:09:44AM -0800, Junio C Hamano wrote: > Mike Hommey <mh@xxxxxxxxxxxx> writes: > > git-send-email.perl | 5 +++-- > > 1 files changed, 3 insertions(+), 2 deletions(-) > > > > diff --git a/git-send-email.perl b/git-send-email.perl > > index 76baa8e..1434eb2 100755 > > --- a/git-send-email.perl > > +++ b/git-send-email.perl > > @@ -367,10 +367,11 @@ if ($thread && !defined $initial_reply_to && $prompting) { > > } while (!defined $_); > > > > $initial_reply_to = $_; > > - $initial_reply_to =~ s/^\s+<?/</; > > - $initial_reply_to =~ s/>?\s+$/>/; > > } > > I wonder what the original rationale for these \s+ was. I'd say copy/paste: - $initial_reply_to =~ s/(^\s+|\s+$)//g; + $initial_reply_to =~ s/^\s+<?/</; + $initial_reply_to =~ s/>?\s+$/>/; Mike - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html