summaryrefslogtreecommitdiff
path: root/diff.c
diff options
context:
space:
mode:
authorRamkumar Ramachandra <artagnon@gmail.com>2012-11-13 15:42:47 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-11-19 03:18:13 (GMT)
commit4e215131d2543a28a065c5161438c315316f9961 (patch)
tree37f5f596557b6e15824b4ea1f0e76e8ad141b3b6 /diff.c
parentd9c552f17a28e5ab1b72135038d4888ea02651ea (diff)
downloadgit-4e215131d2543a28a065c5161438c315316f9961.zip
git-4e215131d2543a28a065c5161438c315316f9961.tar.gz
git-4e215131d2543a28a065c5161438c315316f9961.tar.bz2
submodule: display summary header in bold
Currently, 'git diff --submodule' displays output with a bold diff header for non-submodules. So this part is in bold: diff --git a/file1 b/file1 index 30b2f6c..2638038 100644 --- a/file1 +++ b/file1 For submodules, the header looks like this: Submodule submodule1 012b072..248d0fd: Unfortunately, it's easy to miss in the output because it's not bold. Change this. Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com> Acked-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'diff.c')
-rw-r--r--diff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/diff.c b/diff.c
index af01fa9..28933e4 100644
--- a/diff.c
+++ b/diff.c
@@ -2259,7 +2259,7 @@ static void builtin_diff(const char *name_a,
const char *add = diff_get_color_opt(o, DIFF_FILE_NEW);
show_submodule_summary(o->file, one ? one->path : two->path,
one->sha1, two->sha1, two->dirty_submodule,
- del, add, reset);
+ meta, del, add, reset);
return;
}