From: Paul Mackerras Date: Sun, 7 Aug 2005 10:01:24 +0000 (+1000) Subject: Use lf translation rather than binary when reading commit data. X-Git-Tag: v0.99.4~1^2^2~4 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=d6e8149bc53de57cab7cc0d9aff6c2341f3a7efa;p=git.git Use lf translation rather than binary when reading commit data. The effect of this is that it allows Tcl to do the locale-specific conversion of the input data to its internal unicode representation. That means that commit messages in Russian or other languages should be displayed correctly now (according to the locale that is in effect.) --- diff --git a/gitk b/gitk index b38d7cd0..e21d7a28 100755 --- a/gitk +++ b/gitk @@ -48,7 +48,7 @@ proc getcommits {rargs} { exit 1 } set leftover {} - fconfigure $commfd -blocking 0 -translation binary + fconfigure $commfd -blocking 0 -translation lf fileevent $commfd readable "getcommitlines $commfd" $canv delete all $canv create text 3 3 -anchor nw -text "Reading commits..." \