Johannes Schindelin <johannes.schindelin@xxxxxx> writes: > Just like we already taught the find_commit_subject() function (to make > it consistent with the code in pretty.c), we now simply skip leading > blank lines of the commit message. > > Signed-off-by: Johannes Schindelin <johannes.schindelin@xxxxxx> > --- > sequencer.c | 6 ++---- > 1 file changed, 2 insertions(+), 4 deletions(-) > > diff --git a/sequencer.c b/sequencer.c > index 7d7add6..cdfac82 100644 > --- a/sequencer.c > +++ b/sequencer.c > @@ -544,10 +544,8 @@ static int do_pick_commit(struct commit *commit, struct replay_opts *opts) > * information followed by "\n\n". > */ > p = strstr(msg.message, "\n\n"); > - if (p) { > - p += 2; > - strbuf_addstr(&msgbuf, p); > - } > + if (p) > + strbuf_addstr(&msgbuf, skip_blank_lines(p + 2)); > > if (opts->record_origin) { > if (!has_conforming_footer(&msgbuf, NULL, 0)) Here, msg.message was read in get_message() by calling logmsg_reencode() that reads from get_commit_buffer(). The code structure is exactly the same as the previous one. Good. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html