From ef73896b2b596fe07e86829e26839f37e2d7513a Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Wed, 19 Jan 2011 14:46:59 -0500 Subject: [PATCH] gitk: Remove unused $cdate array It was unused since commit 9f1afe05c3 ("gitk: New improved gitk"). Signed-off-by: Anders Kaseorg Signed-off-by: Paul Mackerras --- gitk | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/gitk b/gitk index 4cde0c493b..fec07d3b84 100755 --- a/gitk +++ b/gitk @@ -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] } -- 2.11.4.GIT