summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a254002)
raw | patch | inline | side by side (parent: a254002)
author | Junio C Hamano <junkio@cox.net> | |
Wed, 27 Sep 2006 01:59:41 +0000 (18:59 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Wed, 27 Sep 2006 09:57:37 +0000 (02:57 -0700) |
Under --color option, diffstat shows '+' and '-' in the graph
the same color as added and deleted lines.
Signed-off-by: Junio C Hamano <junkio@cox.net>
the same color as added and deleted lines.
Signed-off-by: Junio C Hamano <junkio@cox.net>
diff.c | patch | blob | history |
index 8d299f4766eb97a19390e5ea3dde6f1c3e115a97..3fd7a5220d283ef0e575cfb0d436c029977c632e 100644 (file)
--- a/diff.c
+++ b/diff.c
return (it * width * 2 + max_change) / (max_change * 2);
}
-static void show_name(const char *prefix, const char *name, int len)
+static void show_name(const char *prefix, const char *name, int len,
+ const char *reset, const char *set)
{
- printf(" %s%-*s |", prefix, len, name);
+ printf(" %s%s%-*s%s |", set, prefix, len, name, reset);
}
-static void show_graph(char ch, int cnt)
+static void show_graph(char ch, int cnt, const char *set, const char *reset)
{
if (cnt <= 0)
return;
+ printf("%s", set);
while (cnt--)
putchar(ch);
+ printf("%s", reset);
}
static void show_stats(struct diffstat_t* data, struct diff_options *options)
int max_change = 0, max_len = 0;
int total_files = data->nr;
int width, name_width;
+ const char *reset, *set, *add_c, *del_c;
if (data->nr == 0)
return;
}
/* Find the longest filename and max number of changes */
+ reset = diff_get_color(options->color_diff, DIFF_RESET);
+ set = diff_get_color(options->color_diff, DIFF_PLAIN);
+ add_c = diff_get_color(options->color_diff, DIFF_FILE_NEW);
+ del_c = diff_get_color(options->color_diff, DIFF_FILE_OLD);
+
for (i = 0; i < data->nr; i++) {
struct diffstat_file *file = data->files[i];
int change = file->added + file->deleted;
}
if (data->files[i]->is_binary) {
- show_name(prefix, name, len);
+ show_name(prefix, name, len, reset, set);
printf(" Bin\n");
goto free_diffstat_file;
}
else if (data->files[i]->is_unmerged) {
- show_name(prefix, name, len);
+ show_name(prefix, name, len, reset, set);
printf(" Unmerged\n");
goto free_diffstat_file;
}
add = scale_linear(add, width, max_change);
del = total - add;
}
- show_name(prefix, name, len);
+ show_name(prefix, name, len, reset, set);
printf("%5d ", added + deleted);
- show_graph('+', add);
- show_graph('-', del);
+ show_graph('+', add, add_c, reset);
+ show_graph('-', del, del_c, reset);
putchar('\n');
free_diffstat_file:
free(data->files[i]->name);
free(data->files[i]);
}
free(data->files);
- printf(" %d files changed, %d insertions(+), %d deletions(-)\n",
- total_files, adds, dels);
+ printf("%s %d files changed, %d insertions(+), %d deletions(-)%s\n",
+ set, total_files, adds, dels, reset);
}
struct checkdiff_t {