diff options
author | Paul Mackerras <paulus@samba.org> | 2005-08-07 20:01:24 +1000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-08-07 20:01:24 +1000 |
commit | d6e8149bc53de57cab7cc0d9aff6c2341f3a7efa (patch) | |
tree | 15bce7134ce82d6eec938cb001cb61c2d75c1176 | |
parent | Change cursor to a hand cursor when over a SHA1 ID link. (diff) | |
download | tgif-d6e8149bc53de57cab7cc0d9aff6c2341f3a7efa.tar.xz |
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.)
-rwxr-xr-x | gitk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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..." \ |