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.
Junio C Hamano committed
Sep 21, 2016 at 08:34 UTC
60febec4c70f4f4a2fdff3b1ba80882938e2441b
1 file changed
+1
-1
Reintegrate
+1
-1
index b4a64fb275..34ba795c82 100755
--- a/Reintegrate
+++ b/Reintegrate
@@ -42,7 +42,7 @@ annotate_merge () {
my @msg = ();
while (<$fh>) {
chomp;
- if (/^\* $branch /) {
+ if (/^\* \Q$branch\E /) {
$in_section = 1;
next;
}