Meta/Reintegrate: omit everything after $willdo verb

A typical entry in whats-cooking.txt begins with the description of the topic, followed by "Will do what to this topic" declaration of the decision (i.e. $willdo verb) and supplemental text to explain the decision. When we read such an entry to add to a merge log message, we omit the line with "Will do what". Instead, stop reading there to exclude the supplemental text from the merge log.

Junio C Hamano committed Jun 23, 2016 at 15:20 UTC 2dc125e01b89e6cfb9f0b9215b41f6083d4dfded
1 file changed +1 -1
Reintegrate
+1 -1
@@ -54,7 +54,7 @@ annotate_merge () {
54 }
55 next unless ($in_section && $in_desc);
56 next if (/Originally merged to '\''next'\'' on ([-0-9]+)/);
57 - next if (wildo_match($_));
57 + last if (wildo_match($_));
58 push @msg, "$_\n";
59 }
60 return ($in_section, @msg);