diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-04-19 21:37:15 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-04-19 21:37:15 -0700 |
commit | 74a74beee9676a21c089f569b75d386398a4867b (patch) | |
tree | bf55b5ff0285cea7c7c9599ea0507d19c6d3326d /mailinfo.c | |
parent | 872e2cf00a570e9d83e40343579a7bb092307d53 (diff) | |
parent | fd1062e52e1a7ed3be443a320708ed849958c1bf (diff) | |
download | git-74a74beee9676a21c089f569b75d386398a4867b.tar.gz |
Merge branch 'lt/mailinfo-in-body-header-continuation'
If a patch e-mail had its first paragraph after an in-body header
indented (even after a blank line after the in-body header line),
the indented line was mistook as a continuation of the in-body
header. This has been fixed.
* lt/mailinfo-in-body-header-continuation:
mailinfo: fix in-body header continuations
Diffstat (limited to 'mailinfo.c')
-rw-r--r-- | mailinfo.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mailinfo.c b/mailinfo.c index a489d9d0fb..68037758f2 100644 --- a/mailinfo.c +++ b/mailinfo.c @@ -757,8 +757,13 @@ static int handle_commit_msg(struct mailinfo *mi, struct strbuf *line) assert(!mi->filter_stage); if (mi->header_stage) { - if (!line->len || (line->len == 1 && line->buf[0] == '\n')) + if (!line->len || (line->len == 1 && line->buf[0] == '\n')) { + if (mi->inbody_header_accum.len) { + flush_inbody_header_accum(mi); + mi->header_stage = 0; + } return 0; + } } if (mi->use_inbody_headers && mi->header_stage) { |