gitk: Do not pick up file names of "copy from" lines
commit5e85ec4cd0658232fa8ee13e8cd9da21e0e4973e
authorJohannes Sixt <johannes.sixt@telecom.at>
Tue, 2 Oct 2007 14:16:54 +0000 (2 16:16 +0200)
committerShawn O. Pearce <spearce@spearce.org>
Sat, 20 Oct 2007 03:09:27 +0000 (19 23:09 -0400)
treeae2740d862f66e0c6333036e178d8e3f1997fdcf
parent5dd57d512225bb82aa0010b39aaec0085d471eac
gitk: Do not pick up file names of "copy from" lines

A file copy would be detected only if the original file was modified in the
same commit. This implies that there will be a patch listed under the
original file name, and we would expect that clicking the original file
name in the file list warps the patch window to that file's patch. (If the
original file was not modified, the copy would not be detected in the first
place, the copied file would be listed as "new file", and this whole matter
would not apply.)

However, if the name of the copy is sorted after the original file's patch,
then the logic introduced by commit d1cb298b0b (which picks up the link
information from the "copy from" line) would overwrite the link
information that is already present for the original file name, which was
parsed earlier. Hence, this patch reverts part of said commit.

Signed-off-by: Johannes Sixt <johannes.sixt@telecom.at>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
gitk