summaryrefslogtreecommitdiff
path: root/builtin-blame.c
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2009-03-12 21:46:35 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2009-03-12 21:46:35 -0700
commitc26901a8ff8aa25a584551ee946516e8dc8a704a (patch)
treea284c4eb5d185a3e4131a154f5690fd2b0a15833 /builtin-blame.c
parentMerge branch 'js/maint-1.6.1-remote-remove-mirror' into maint-1.6.1 (diff)
parentbuiltin-blame.c: Use utf8_strwidth for author's names (diff)
downloadtgif-c26901a8ff8aa25a584551ee946516e8dc8a704a.tar.xz
Merge branch 'gt/maint-1.6.1-utf8-width' into maint-1.6.1
* gt/maint-1.6.1-utf8-width: builtin-blame.c: Use utf8_strwidth for author's names utf8: add utf8_strwidth()
Diffstat (limited to 'builtin-blame.c')
-rw-r--r--builtin-blame.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/builtin-blame.c b/builtin-blame.c
index aae14ef8bb..9b9f5442a2 100644
--- a/builtin-blame.c
+++ b/builtin-blame.c
@@ -19,6 +19,7 @@
#include "string-list.h"
#include "mailmap.h"
#include "parse-options.h"
+#include "utf8.h"
static char blame_usage[] = "git blame [options] [rev-opts] [rev] [--] file";
@@ -1618,13 +1619,14 @@ static void emit_other(struct scoreboard *sb, struct blame_entry *ent, int opt)
printf(" %*d", max_orig_digits,
ent->s_lno + 1 + cnt);
- if (!(opt & OUTPUT_NO_AUTHOR))
- printf(" (%-*.*s %10s",
- longest_author, longest_author,
- ci.author,
+ if (!(opt & OUTPUT_NO_AUTHOR)) {
+ int pad = longest_author - utf8_strwidth(ci.author);
+ printf(" (%s%*s %10s",
+ ci.author, pad, "",
format_time(ci.author_time,
ci.author_tz,
show_raw_time));
+ }
printf(" %*d) ",
max_digits, ent->lno + 1 + cnt);
}
@@ -1755,7 +1757,7 @@ static void find_alignment(struct scoreboard *sb, int *option)
if (!(suspect->commit->object.flags & METAINFO_SHOWN)) {
suspect->commit->object.flags |= METAINFO_SHOWN;
get_commit_info(suspect->commit, &ci, 1);
- num = strlen(ci.author);
+ num = utf8_strwidth(ci.author);
if (longest_author < num)
longest_author = num;
}