diff options
| author | Junio C Hamano <junkio@cox.net> | 2006-04-07 16:52:59 -0700 |
|---|---|---|
| committer | Junio C Hamano <junkio@cox.net> | 2006-04-07 16:52:59 -0700 |
| commit | d69dc373cbf58d88d19dcbc6cff37e12b17f8fd2 (patch) | |
| tree | d197b22962006c28387c9542c439def1b105ecb9 | |
| parent | Merge branch 'maint' (diff) | |
| parent | gitk: Fix incorrect invocation of getmergediffline (diff) | |
| download | git-d69dc373cbf58d88d19dcbc6cff37e12b17f8fd2.tar.gz git-d69dc373cbf58d88d19dcbc6cff37e12b17f8fd2.zip | |
Merge git://git.kernel.org/pub/scm/gitk/gitk
* git://git.kernel.org/pub/scm/gitk/gitk:
gitk: Fix incorrect invocation of getmergediffline
[PATCH] gitk: Fix searching for filenames in 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] } } |
