Re: [PATCH/RFC] git-am: Make it easier to see which patch failed
From: Stephan Beyer <hidden>
Date: 2016-06-15 22:45:58
Hi, Johannes Schindelin wrote:
On Sun, 18 Jan 2009, Jeff King wrote:quoted
On Sun, Jan 18, 2009 at 10:41:13AM +0100, Stephan Beyer wrote:quoted
quoted
Looks sane except that I do not think you need printf nor the leading blank line, i.e. echo "Patch failed at $msgnum ($FIRSTLINE)"Hmm, IIRC if $FIRSTLINE contains \n or something like that, it will interpret this as newline in some shell/echo implementations. So printf "...%s..." "$FOO" is always sane for user input.Yes, I'm surprised Junio doesn't remember the mass conversions we already had to do (4b7cc26a and 293623ed). But looking at the date, I guess it _has_ been a year and a half. :)Hey, be nice to Junio. Have you seen the amount of mails on this list recently? I think Junio's the only one really reading all of them; even if you were right, he would be entitled to a nicer reminder.
I had almost written the same text but then I thought Jeff did not mean it bad, he was just surprised.
But you are wrong. And Stephan is wrong, too. The name "FIRSTLINE" suggests that it is indeed a first line, and consequently cannot contain a newline. And indeed, it is defined as FIRSTLINE=$(sed 1q "$dotest/final-commit") Just do the following in any of your favorite shells: $ FIRSTLINE=$(sed 1q README) $ echo "$FIRSTLINE." You'll find that the "." is not in a new line.
I have to disagree: $ cat newline foo\nbar $ FIRSTLINE=$(sed 1q newline) $ echo "$FIRSTLINE." foo bar. $ exit
And I know that we relied on that behavior for an eternity.
Where? We should perhaps fix it then. Regards, Stephan -- Stephan Beyer [off-list ref], PGP 0x6EDDD207FCC5040F