aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2010-02-19 21:55:33 -0800
committerJunio C Hamano <gitster@pobox.com>2010-02-19 21:55:33 -0800
commit470b452628d80e89ee869b6b86af6c536ba0b24d (patch)
tree29a47ad4b05e7290f5787efb664f98d5c0448d75
parente9e921981d10554a325f4a1e67e920947e0e4800 (diff)
downloadgit-470b452628d80e89ee869b6b86af6c536ba0b24d.tar.gz
git-470b452628d80e89ee869b6b86af6c536ba0b24d.tar.xz
mailinfo: do not strip leading spaces even for a header line
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--builtin-mailinfo.c3
-rw-r--r--t/t5100/msg00152
2 files changed, 2 insertions, 3 deletions
diff --git a/builtin-mailinfo.c b/builtin-mailinfo.c
index a50ac2256..ce2ef6bed 100644
--- a/builtin-mailinfo.c
+++ b/builtin-mailinfo.c
@@ -779,8 +779,7 @@ static int handle_commit_msg(struct strbuf *line)
return 0;
if (still_looking) {
- strbuf_ltrim(line);
- if (!line->len)
+ if (!line->len || (line->len == 1 && line->buf[0] == '\n'))
return 0;
}
diff --git a/t/t5100/msg0015 b/t/t5100/msg0015
index 957723868..4abb3d5c6 100644
--- a/t/t5100/msg0015
+++ b/t/t5100/msg0015
@@ -1,2 +1,2 @@
-- a list
+ - a list
- of stuff