aboutsummaryrefslogtreecommitdiff
path: root/diff.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-05-01 21:11:40 -0700
committerJunio C Hamano <gitster@pobox.com>2012-05-01 21:11:40 -0700
commit35977f2316d68faa850222e19d4baec407511756 (patch)
treee1ed285b4b8fd0cb891e0c0be25eb309cf39c4fa /diff.c
parenta4da3388fd83e4b31273d71bebf8a92becd8f60c (diff)
parente2c59667ed0a495998b911628de5389a0ee9a728 (diff)
downloadgit-35977f2316d68faa850222e19d4baec407511756.tar.gz
git-35977f2316d68faa850222e19d4baec407511756.tar.xz
Merge branch 'lp/maint-diff-three-dash-with-graph' into maint
"log -p --graph" used with "--stat" had a few formatting error. By Lucian Poston * lp/maint-diff-three-dash-with-graph: t4202: add test for "log --graph --stat -p" separator lines log --graph: fix break in graph lines log --graph --stat: three-dash separator should come after graph lines
Diffstat (limited to 'diff.c')
-rw-r--r--diff.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/diff.c b/diff.c
index 0dea484ee..cd029b33d 100644
--- a/diff.c
+++ b/diff.c
@@ -4414,6 +4414,12 @@ void diff_flush(struct diff_options *options)
if (output_format & DIFF_FORMAT_PATCH) {
if (separator) {
+ if (options->output_prefix) {
+ struct strbuf *msg = NULL;
+ msg = options->output_prefix(options,
+ options->output_prefix_data);
+ fwrite(msg->buf, msg->len, 1, stdout);
+ }
putc(options->line_termination, options->file);
if (options->stat_sep) {
/* attach patch instead of inline */