summaryrefslogtreecommitdiff
path: root/mailinfo.h
diff options
context:
space:
mode:
authorJonathan Tan <jonathantanmy@google.com>2016-09-20 17:17:53 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-09-21 17:23:11 (GMT)
commit6b4b013f1884a3b5e67877d65a9f1da598ab4a6f (patch)
tree3076091dfce8fc0c844c9bbea2825ba25780902b /mailinfo.h
parent9c5681da88825c4320d3f7142ed320e6984c2377 (diff)
downloadgit-6b4b013f1884a3b5e67877d65a9f1da598ab4a6f.zip
git-6b4b013f1884a3b5e67877d65a9f1da598ab4a6f.tar.gz
git-6b4b013f1884a3b5e67877d65a9f1da598ab4a6f.tar.bz2
mailinfo: handle in-body header continuations
Mailinfo currently handles multi-line headers, but it does not handle multi-line in-body headers. Teach it to handle such headers, for example, for this input: From: author <author@example.com> Date: Fri, 9 Jun 2006 00:44:16 -0700 Subject: a very long broken line Subject: another very long broken line interpret the in-body subject to be "another very long broken line" instead of "another very long". An existing test (t/t5100/msg0015) has an indented line immediately after an in-body header - it has been modified to reflect the new functionality. Signed-off-by: Jonathan Tan <jonathantanmy@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'mailinfo.h')
-rw-r--r--mailinfo.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/mailinfo.h b/mailinfo.h
index 93776a7..04a2535 100644
--- a/mailinfo.h
+++ b/mailinfo.h
@@ -27,6 +27,7 @@ struct mailinfo {
int patch_lines;
int filter_stage; /* still reading log or are we copying patch? */
int header_stage; /* still checking in-body headers? */
+ struct strbuf inbody_header_accum;
struct strbuf **p_hdr_data;
struct strbuf **s_hdr_data;