Skip to content

Commit

Permalink
cope with changed git-diff-tree output format
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Mackerras committed Jun 1, 2005
1 parent cfb4563 commit d4e95cb
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions gitk
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ exec wish "$0" -- "${1+$@}"
# and distributed under the terms of the GNU General Public Licence,
# either version 2, or (at your option) any later version.

# CVS $Revision: 1.19 $
# CVS $Revision: 1.20 $

proc getcommits {rargs} {
global commits commfd phase canv mainfont
Expand Down Expand Up @@ -448,7 +448,7 @@ Copyright

Use and redistribute under the terms of the GNU General Public License

(CVS $Revision: 1.19 $)} \
(CVS $Revision: 1.20 $)} \
-justify center -aspect 400
pack $w.m -side top -fill x -padx 20 -pady 20
button $w.ok -text Close -command "destroy $w"
Expand Down Expand Up @@ -1099,11 +1099,8 @@ proc gettreediffline {gdtf id} {
addtocflist $id
return
}
set type [lindex $line 1]
set file [lindex $line 3]
if {$type == "blob"} {
lappend treediffs($id) $file
}
set file [lindex $line 5]
lappend treediffs($id) $file
}

proc getblobdiffs {id} {
Expand Down

0 comments on commit d4e95cb

Please sign in to comment.