Skip to content

Commit

Permalink
gitk: Fix typo in user message.
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Stimming <stimming@tuhh.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Christian Stimming authored and Junio C Hamano committed Jan 11, 2008
1 parent 66e15a6 commit 55e3443
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gitk
Original file line number Diff line number Diff line change
Expand Up @@ -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"] ||
Expand Down

0 comments on commit 55e3443

Please sign in to comment.