diff options
author | Christian Stimming <stimming@tuhh.de> | 2008-01-09 22:23:18 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-01-11 00:51:13 -0800 |
commit | 55e34436e1da167a2abf276e31ef27d3b1e1208b (patch) | |
tree | e709090e5d95ee173a2bd45884b85c01cdc638ca | |
parent | 66e15a6b83a0b79232377137cc1710343a81aea4 (diff) | |
download | git-55e34436e1da167a2abf276e31ef27d3b1e1208b.tar.gz git-55e34436e1da167a2abf276e31ef27d3b1e1208b.tar.xz |
gitk: Fix typo in user message.
Signed-off-by: Christian Stimming <stimming@tuhh.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | gitk | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2629,12 +2629,12 @@ proc askrelhighlight {row id} { if {![info exists selectedline]} return set isbold 0 - if {$highlight_related eq [mc "Descendent"] || - $highlight_related eq [mc "Not descendent"]} { + if {$highlight_related eq [mc "Descendant"] || + $highlight_related eq [mc "Not descendant"]} { if {![info exists descendent($id)]} { is_descendent $id } - if {$descendent($id) == ($highlight_related eq [mc "Descendent"])} { + if {$descendent($id) == ($highlight_related eq [mc "Descendant"])} { set isbold 1 } } elseif {$highlight_related eq [mc "Ancestor"] || |