git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* git-gui: more issues with diff parsing
@ 2008-09-09  8:30 Michele Ballabio
  2008-09-12 15:23 ` Shawn O. Pearce
  0 siblings, 1 reply; 4+ messages in thread
From: Michele Ballabio @ 2008-09-09  8:30 UTC (permalink / raw)
  To: Shawn O. Pearce; +Cc: git

The patch
	git-gui: Fix diff parsing for lines starting with "--" or "++"
seems to have introduced some glitches. With this sequence:

git init
touch g
git add g
git commit -m"g is a file"
rm g
echo "vvvv" > file
ln -s file g
git add g file
git gui

Now clicking on "g" in the staged changes, git-gui gives this line:
	error: Unhandled 2 way diff marker: {d}

The following patch seems to fix this particular issue, but I don't think
it's the right fix...

diff --git a/lib/diff.tcl b/lib/diff.tcl
index a30c80a..0dac732 100644
--- a/lib/diff.tcl
+++ b/lib/diff.tcl
@@ -345,6 +345,8 @@ proc read_diff {fd scroll_pos} {
 				set tags {}
 			}
 			}
+		} elseif [string match {diff --git *} $line] {
+			continue
 		} else {
 			set op [string index $line 0]
 			switch -- $op {

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-09-12 18:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-09  8:30 git-gui: more issues with diff parsing Michele Ballabio
2008-09-12 15:23 ` Shawn O. Pearce
2008-09-12 17:06   ` Junio C Hamano
2008-09-12 18:01   ` Jakub Narebski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).