trailer: retitle a test and correct an in-comment message
authorChristian Couder <christian.couder@gmail.com>
Wed, 26 Aug 2015 02:51:00 +0000 (04:51 +0200)
committerJunio C Hamano <gitster@pobox.com>
Wed, 26 Aug 2015 19:16:56 +0000 (12:16 -0700)
Signed-off-by: Christian Couder <christian.couder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t7513-interpret-trailers.sh
trailer.c
index 33cf4d1d2172e8bc17bbb0eaaf8532e31621cf47..8f1f55be25befeaecb7e39d0d0654bf41500c131 100755 (executable)
@@ -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
 
index f7d271397fea3bf02d795fddcf4472ef2bd9f395..a92ba53fa50e98f5c7b80bb1ba889702571872f1 100644 (file)
--- a/trailer.c
+++ b/trailer.c
@@ -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)