commit: fix pretty-printing of messages with "\nencoding "
commitd0e50cb4cb8e0cc8b445a9749547019efaa5703e
authorJeff King <peff@peff.net>
Wed, 28 Mar 2007 21:52:09 +0000 (28 17:52 -0400)
committerJunio C Hamano <junkio@cox.net>
Wed, 28 Mar 2007 22:06:18 +0000 (28 15:06 -0700)
tree142558d300e99c0123792f53f08ac88d514489cf
parent75c962c99a9115d489549ad9b8419d3e37e85f02
commit: fix pretty-printing of messages with "\nencoding "

The function replace_encoding_header is given the whole
commit buffer, including the commit message. When looking
for the encoding header, if none was found in the header, it
would locate any line in the commit message matching
"\nencoding " and remove it.

Instead, we now make sure to search only to the end of the
header.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
commit.c