Tor Arvid Lund wrote:
quoted hunk ↗ jump to hunk
I don't really know the git-gui code or the git C code well, but it
seems that I got around the error with this small patch:
diff --git a/builtin/apply.c b/builtin/apply.c
index 12ef9ea..124791f 100644
--- a/builtin/apply.c
+++ b/builtin/apply.c
@@ -1335,6 +1335,8 @@ static int parse_fragment(char *line, unsigned long size,
* l10n of "\ No newline..." is at least that long.
*/
case '\\':
+ if (newlines == oldlines == 1)
[...]
Heh. This code is a roundabout way to say "if (newlines == oldlines)",
rather than "if (newlines == 1 && oldlines == 1)" that might have been
intended.
Unfortunately I do not have any more insight than that. If you can
give an example reproducing this with git apply from the command
line, that would be very helpful.
Thanks,
Jonathan