Skip to content

Commit

Permalink
trailer: retitle a test and correct an in-comment message
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Couder <christian.couder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Christian Couder authored and Junio C Hamano committed Aug 26, 2015
1 parent dc5d553 commit 6262fe9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion t/t7513-interpret-trailers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ test_expect_success 'with config option on the command line' '
test_cmp expected actual
'

test_expect_success 'with message that contains only a title' '
test_expect_success 'with only a title in the message' '
cat >expected <<-\EOF &&
area: change
Expand Down
3 changes: 2 additions & 1 deletion trailer.c
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,8 @@ static int find_trailer_start(struct strbuf **lines, int count)
/*
* Get the start of the trailers by looking starting from the end
* for a line with only spaces before lines with one separator.
* The start cannot be the first line.
* The first line must not be analyzed as the others as it
* should be either the message title or a blank line.
*/
for (start = count - 1; start >= 1; start--) {
if (lines[start]->buf[0] == comment_line_char)
Expand Down

0 comments on commit 6262fe9

Please sign in to comment.