summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Christian Stimming <stimming@tuhh.de>2008-01-09 22:23:18 +0100
committerLibravatar Junio C Hamano <gitster@pobox.com>2008-01-11 00:51:13 -0800
commit55e34436e1da167a2abf276e31ef27d3b1e1208b (patch)
treee709090e5d95ee173a2bd45884b85c01cdc638ca
parentgitk: Fix the Makefile to cope with systems lacking msgfmt (diff)
downloadtgif-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-xgitk6
1 files changed, 3 insertions, 3 deletions
diff --git a/gitk b/gitk
index 801a5a9d86..b3cb8e8b7e 100755
--- a/gitk
+++ b/gitk
@@ -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"] ||