diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-09-17 11:42:27 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-09-17 11:42:27 -0700 |
commit | e8717b67fec7ec7c1f8742bb7b75900ab60bbc1a (patch) | |
tree | 943a52343d1314e10d16d79c39f5479a0919f0a6 /gitweb/gitweb.perl | |
parent | Merge branch 'jk/has-sha1-file-retry-packed' (diff) | |
parent | gitweb: Fix the author initials in blame for non-ASCII names (diff) | |
download | tgif-e8717b67fec7ec7c1f8742bb7b75900ab60bbc1a.tar.xz |
Merge branch 'ab/gitweb-author-initials'
* ab/gitweb-author-initials:
gitweb: Fix the author initials in blame for non-ASCII names
Diffstat (limited to 'gitweb/gitweb.perl')
-rwxr-xr-x | gitweb/gitweb.perl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index b5d156f7d0..68c77f6f8f 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -6631,6 +6631,7 @@ sub git_blame_common { $hash_base, '--', $file_name or die_error(500, "Open git-blame --porcelain failed"); } + binmode $fd, ':utf8'; # incremental blame data returns early if ($format eq 'data') { |