diff options
author | Junio C Hamano <junkio@cox.net> | 2006-04-07 16:53:06 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-04-07 16:53:06 -0700 |
commit | 1b25fd191d040ab59f8124694152c1577b13d968 (patch) | |
tree | 738a180e9620eb1a236c48a806e3052759eb5c24 /gitk | |
parent | 0ba9ea97e2d621fd50ae4be22ee465096267dbae (diff) | |
parent | d69dc373cbf58d88d19dcbc6cff37e12b17f8fd2 (diff) | |
download | git-1b25fd191d040ab59f8124694152c1577b13d968.tar.gz |
Merge branch 'master' into next
* master:
gitk: Fix incorrect invocation of getmergediffline
[PATCH] gitk: Fix searching for filenames in gitk
count-delta: match get_delta_hdr_size() changes.
check patch_delta bounds more carefully
Diffstat (limited to 'gitk')
-rwxr-xr-x | gitk | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2230,7 +2230,7 @@ proc donefilediff {} { } } -proc findcont {id} { +proc findcont {} { global findid treediffs parentlist global ffileline findstartline finddidsel global displayorder numcommits matchinglines findinprogress @@ -2700,7 +2700,7 @@ proc getmergediffline {mdf id np} { incr nextupdate 100 fileevent $mdf readable {} update - fileevent $mdf readable [list getmergediffline $mdf $id] + fileevent $mdf readable [list getmergediffline $mdf $id $np] } } |