Meta/cook: 'Still doing something' is another keyphrase

Junio C Hamano committed Jan 26, 2016 at 16:21 UTC 783534b26f8357a565d7688a28918350142952f8
2 files changed +4 -4
Reintegrate
+1 -1
@@ -29,7 +29,7 @@ annotate_merge () {
29 s/^\s*//;
30 if (/^Will (?:\S+ ){0,2}(fast-track|keep|merge|drop|discard|cook|kick|defer|be re-?rolled)[,. ]/ ||
31 /^Not urgent/ || /^Not ready/ || /^Waiting for / ||
32 - /^Can wait in / ||
32 + /^Can wait in / || /^Still / ||
33 /^Needs? / || /^Expecting / || /^May want to /) {
34 return 1;
35 }
cook
+3 -3
@@ -242,8 +242,8 @@ sub get_commit {
242 push @desc, $commit{$_}->{'log'};
243 }
244
245 - if (80 < @desc) {
246 - @desc = @desc[0..4];
245 + if (100 < @desc) {
246 + @desc = @desc[0..99];
247 push @desc, "- ...";
248 }
249
@@ -653,7 +653,7 @@ sub wildo_flush_topic {
653 sub wildo_match {
654 if (/^Will (?:\S+ ){0,2}(fast-track|hold|keep|merge|drop|discard|cook|kick|defer|be re-?rolled)[,. ]/ ||
655 /^Not urgent/ || /^Not ready/ || /^Waiting for / || /^Can wait in / ||
656 - /^Needs? / || /^Expecting / || /^May want to /) {
656 + /^Needs? / || /^Expecting / || /^May want to / || /^Still /) {
657 return 1;
658 }
659 if (/^I think this is ready for /) {