diff options
author | Anders Kaseorg <andersk@MIT.EDU> | 2011-01-19 14:46:59 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2011-05-29 14:46:16 +1000 |
commit | ef73896b2b596fe07e86829e26839f37e2d7513a (patch) | |
tree | 0f0c3928a630cfbc0025e63d18d5d0cc40b09b3f | |
parent | gitk: Update cherry-pick error message parsing (diff) | |
download | tgif-ef73896b2b596fe07e86829e26839f37e2d7513a.tar.xz |
gitk: Remove unused $cdate array
It was unused since commit 9f1afe05c3 ("gitk: New improved gitk").
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
Signed-off-by: Paul Mackerras <paulus@samba.org>
-rwxr-xr-x | gitk | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -1621,7 +1621,7 @@ proc readcommit {id} { } proc parsecommit {id contents listed} { - global commitinfo cdate + global commitinfo set inhdr 1 set comment {} @@ -1671,9 +1671,6 @@ proc parsecommit {id contents listed} { } set comment $newcomment } - if {$comdate != {}} { - set cdate($id) $comdate - } set commitinfo($id) [list $headline $auname $audate \ $comname $comdate $comment] } |