From 470b452628d80e89ee869b6b86af6c536ba0b24d Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Fri, 19 Feb 2010 21:55:33 -0800 Subject: mailinfo: do not strip leading spaces even for a header line Signed-off-by: Junio C Hamano --- builtin-mailinfo.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'builtin-mailinfo.c') 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; } -- cgit v1.2.1