From 60febec4c70f4f4a2fdff3b1ba80882938e2441b Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Wed, 21 Sep 2016 08:34:09 -0700 Subject: [PATCH] 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. --- Reintegrate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Reintegrate b/Reintegrate 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; } -- 2.47.3