Meta/Reintegrate: find the branch name literally in "What's cooking" reort

It is kind of surprising but this week I named a topic name with '+'
in it for the first time, and for that branch the pattern did not
match and failed to annotate it with the description.
This commit is contained in:
Junio C Hamano 2016-09-21 08:34:09 -07:00
parent a41488d723
commit 60febec4c7

View File

@ -42,7 +42,7 @@ annotate_merge () {
my @msg = ();
while (<$fh>) {
chomp;
if (/^\* $branch /) {
if (/^\* \Q$branch\E /) {
$in_section = 1;
next;
}