diff options
author | Jeff King <peff@peff.net> | 2018-08-22 20:50:17 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-08-23 10:08:51 -0700 |
commit | e5fba5d55886eaf48aeeb158dd4d30c2fc0294c9 (patch) | |
tree | 31eff0b791e7d3dbc8b270a69789ab363ba89577 /pretty.c | |
parent | 1688c9a4894df517241026c7a3848bdc84607986 (diff) | |
download | git-e5fba5d55886eaf48aeeb158dd4d30c2fc0294c9.tar.gz |
pretty, ref-filter: format %(trailers) with no_divider option
In both of these cases we know that we are feeding the
trailer-parsing code a pure commit message. We should tell
it so, which avoids false positives for a commit message
that contains a "---" line.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pretty.c')
-rw-r--r-- | pretty.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1304,6 +1304,9 @@ static size_t format_commit_one(struct strbuf *sb, /* in UTF-8 */ if (skip_prefix(placeholder, "(trailers", &arg)) { struct process_trailer_options opts = PROCESS_TRAILER_OPTIONS_INIT; + + opts.no_divider = 1; + if (*arg == ':') { arg++; for (;;) { |