Junio C Hamano <gitster@xxxxxxxxx> writes: > Redoing what e3f67d30 (am: fix patch format detection for > Thunderbird "Save As" emails, 2010-01-25) tried to do without > wasting a fork and a pipe may be a workable improvement. > > I see Stephen who wrote the original "Thunderbird save-as" is > already on the Cc list. How about doing it this way instead? Not that way, but more like this. git-am.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/git-am.sh b/git-am.sh index ee61a77..32e3039 100755 --- a/git-am.sh +++ b/git-am.sh @@ -250,8 +250,7 @@ check_patch_format () { # discarding the indented remainder of folded lines, # and see if it looks like that they all begin with the # header field names... - tr -d '\015' <"$1" | - sed -n -e '/^$/q' -e '/^[ ]/d' -e p | + sed -n -e 's/\r$//' -e '/^$/q' -e '/^[ ]/d' -e p | sane_egrep -v '^[!-9;-~]+:' >/dev/null || patch_format=mbox fi -- 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