From: Jeff King Date: Wed, 28 Mar 2007 21:09:05 +0000 (-0400) Subject: Fix "--pretty=format:" encoding item X-Git-Tag: v1.5.1-rc3~4 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6a5ea2d023906a6e8feea42afa45536db6fd493f;p=git.git Fix "--pretty=format:" encoding item It printed the header "encoding " instead of just showing the encoding, as all other items do. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- diff --git a/commit.c b/commit.c index 9ac533c85..a4f2e74c0 100644 --- a/commit.c +++ b/commit.c @@ -888,7 +888,8 @@ static long format_commit_message(const struct commit *commit, fill_person(table + ICOMMITTER_NAME, msg + i + 10, eol - i - 10); else if (!prefixcmp(msg + i, "encoding ")) - table[IENCODING].value = xstrndup(msg + i, eol - i); + table[IENCODING].value = + xstrndup(msg + i + 9, eol - i - 9); i = eol; } if (msg[i])