]> git.ipfire.org Git - thirdparty/git.git/commit - log-tree.c
pretty: make empty userformats truly empty
authorJeff King <peff@peff.net>
Tue, 29 Jul 2014 17:56:48 +0000 (13:56 -0400)
committerJunio C Hamano <gitster@pobox.com>
Wed, 30 Jul 2014 19:30:08 +0000 (12:30 -0700)
commitb9c7d6e4330e3dcdb3b3e5f013e5667e47555c95
tree3b2dac6b6d40dfcf8973f6eb74d062c8eaed13c1
parentc75e7ad28a34081ca6e7e53c0551fa6c99b208b0
pretty: make empty userformats truly empty

If the user provides an empty format with "--format=", we
end up putting in extra whitespace that the user cannot
prevent. This comes from two places:

  1. If the format is missing a terminating newline, we add
     one automatically. This makes sense for --format=%h, but
     not for a truly empty format.

  2. We add an extra newline between the pretty-printed
     format and a diff or diffstat. If the format is empty,
     there's no point in doing so if there's nothing to
     separate.

With this patch, one can get a diff with no other cruft out
of "diff-tree --format= $commit".

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
combine-diff.c
commit.h
log-tree.c
pretty.c