summaryrefslogtreecommitdiff
path: root/gitk
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-04-07 16:53:06 -0700
committerJunio C Hamano <junkio@cox.net>2006-04-07 16:53:06 -0700
commit1b25fd191d040ab59f8124694152c1577b13d968 (patch)
tree738a180e9620eb1a236c48a806e3052759eb5c24 /gitk
parent0ba9ea97e2d621fd50ae4be22ee465096267dbae (diff)
parentd69dc373cbf58d88d19dcbc6cff37e12b17f8fd2 (diff)
downloadgit-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-xgitk4
1 files changed, 2 insertions, 2 deletions
diff --git a/gitk b/gitk
index 26fa79af7a..f88c06e565 100755
--- a/gitk
+++ b/gitk
@@ -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]
}
}