From: Junio C Hamano Date: Tue, 28 Oct 2014 19:44:09 +0000 (-0700) Subject: builtin/commit.c: extract ignore_non_trailer() helper function X-Git-Tag: v2.3.0-rc0~78^2~3^2~1 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/073bd75e177aa9f1fc42b152a38e251c7156dfe0?hp=073bd75e177aa9f1fc42b152a38e251c7156dfe0 builtin/commit.c: extract ignore_non_trailer() helper function Extract a helper function from prepare_to_commit() to determine where to place a new Signed-off-by: line, which is essentially the true "end" of the log message, ignoring the trailing "Conflicts:" line and everything below it. The detection _should_ make sure the "Conflicts:" line it finds is truly the conflict hint block by checking everything that follows is a HT indented pathname to avoid false positive, but this logic will be revamped in a later patch to ignore comments and blanks anyway, so it is left as-is in this step. Signed-off-by: Junio C Hamano ---