From: Dave Dulson Date: Sun, 3 Jan 2010 14:56:25 +0000 (+0000) Subject: gitk: Fix display of newly-created tags X-Git-Tag: v1.7.0-rc1~8^2~6 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=fcacf489577e225d78b290290765775c62c56464;p=git.git gitk: Fix display of newly-created tags If the user creates a tag with the "create tag" dialog in gitk and then clicks on the newly-created tag, its contents don't get displayed. The reason is that rereadrefs hasn't been called, meaning the tag doesn't exist in $tagobjid. This causes the cat-file to fail. Instead of using $tagobjid, pass the $tag directly, ensuring the tag contents are populated correctly. Signed-off-by: David Dulson Signed-off-by: Paul Mackerras --- diff --git a/gitk b/gitk index 0b3e5bca7..de911b6e6 100755 --- a/gitk +++ b/gitk @@ -10493,7 +10493,7 @@ proc showtag {tag isnew} { set linknum 0 if {![info exists tagcontents($tag)]} { catch { - set tagcontents($tag) [exec git cat-file tag $tagobjid($tag)] + set tagcontents($tag) [exec git cat-file tag $tag] } } if {[info exists tagcontents($tag)]} {