From e68989a739d8b1c5effb898d1ac78d27ca9d313a Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Tue, 6 Feb 2007 01:52:04 -0800 Subject: annotate: fix for cvsserver. git-cvsserver does not want the boundary commits shown any differently. Signed-off-by: Junio C Hamano --- builtin-blame.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'builtin-blame.c') diff --git a/builtin-blame.c b/builtin-blame.c index a18ef81a14..69fc145a38 100644 --- a/builtin-blame.c +++ b/builtin-blame.c @@ -41,6 +41,7 @@ static int max_score_digits; static int show_root; static int blank_boundary; static int incremental; +static int cmd_is_annotate; #ifndef DEBUG #define DEBUG 0 @@ -1554,12 +1555,12 @@ static void emit_other(struct scoreboard *sb, struct blame_entry *ent, int opt) int length = (opt & OUTPUT_LONG_OBJECT_NAME) ? 40 : 8; if (suspect->commit->object.flags & UNINTERESTING) { - if (!blank_boundary) { + if (blank_boundary) + memset(hex, ' ', length); + else if (!cmd_is_annotate) { length--; putchar('^'); } - else - memset(hex, ' ', length); } printf("%.*s", length, hex); @@ -2070,6 +2071,8 @@ int cmd_blame(int argc, const char **argv, const char *prefix) const char *bottomtop = NULL; const char *contents_from = NULL; + cmd_is_annotate = !strcmp(argv[0], "annotate"); + git_config(git_blame_config); save_commit_buffer = 0; -- cgit v1.2.1