summaryrefslogtreecommitdiff
path: root/diff.c
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2012-05-01 21:11:40 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2012-05-01 21:11:40 -0700
commit35977f2316d68faa850222e19d4baec407511756 (patch)
treee1ed285b4b8fd0cb891e0c0be25eb309cf39c4fa /diff.c
parentMerge branch 'jk/rebase-i-submodule-conflict-only' into maint (diff)
parentt4202: add test for "log --graph --stat -p" separator lines (diff)
downloadtgif-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 0dea484ee8..cd029b33d5 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 */