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 | ce18135d862b5dbc731d203b27c279529e58b54b (diff) | |
parent | c5a4c4debec43ff98053cb6b69d35d63e45ee131 (diff) | |
download | git-d69dc373cbf58d88d19dcbc6cff37e12b17f8fd2.tar.gz git-d69dc373cbf58d88d19dcbc6cff37e12b17f8fd2.tar.xz |
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] } } |