From b18e97ceb938362c0be62997ba333d4ad36226e4 Mon Sep 17 00:00:00 2001 From: Lucian Poston Date: Tue, 20 Mar 2012 01:05:34 -0700 Subject: log --graph: fix break in graph lines Output from "git log --graph --stat -p" broke the ancestry graph lines with a single empty line between the diffstat and the patch. Signed-off-by: Lucian Poston Signed-off-by: Junio C Hamano --- diff.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'diff.c') diff --git a/diff.c b/diff.c index d922b77aef..7d5b7ecf14 100644 --- a/diff.c +++ b/diff.c @@ -4266,6 +4266,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 */ -- cgit v1.2.1