diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-06-06 11:35:01 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-06-06 11:35:02 -0700 |
commit | e7cc0ede1837b6f679e245e29ae3687fc5e6c20d (patch) | |
tree | f20fa96fad6afd13fd97cd895bdbc7e173a3c29e /combine-diff.c | |
parent | Merge branch 'sk/spawn-less-case-insensitively-from-grep-O-i' (diff) | |
parent | git-show: fix 'git show -s' to not add extra terminator after merge commit (diff) | |
download | tgif-e7cc0ede1837b6f679e245e29ae3687fc5e6c20d.tar.xz |
Merge branch 'mk/show-s-no-extra-blank-line-for-merges'
* mk/show-s-no-extra-blank-line-for-merges:
git-show: fix 'git show -s' to not add extra terminator after merge commit
Diffstat (limited to 'combine-diff.c')
-rw-r--r-- | combine-diff.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/combine-diff.c b/combine-diff.c index 12764fb733..f9975d2c2e 100644 --- a/combine-diff.c +++ b/combine-diff.c @@ -1396,7 +1396,8 @@ void diff_tree_combined(const unsigned char *sha1, if (show_log_first) { show_log(rev); - if (rev->verbose_header && opt->output_format) + if (rev->verbose_header && opt->output_format && + opt->output_format != DIFF_FORMAT_NO_OUTPUT) printf("%s%c", diff_line_prefix(opt), opt->line_termination); } |