|
Description
|
The current Comment checking does as part of `hg pbchk` uses this regular expression:
^(Contributed by .*|backout \d{7})
to catch miscellaneous stuff besides bug IDs and ARC cases. This is too strict in two ways:
* "Portions contributed by ..." should be accepted
* History has shown that "backout" is often spelled "back out" and "back-out"
Since it is very simple to tweak the regular expression to support these alternate forms, we should do so.
|