Bug 340350: 009bugwords.t barewords detection is imperfect - Patch by Fr��d��ric Buclin <LpSolit@gmail.com> r=Colin a=LpSolit

This commit is contained in:
lpsolit%gmail.com 2007-07-11 17:30:05 +00:00
Родитель d83c776371
Коммит a73b1889c9
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -68,7 +68,7 @@ foreach my $file (@testitems) {
my $lineno = scalar(@lineno) + 1;
# "a bug", "bug", "bugs"
if (grep /(a?[\s>]bugs?[\s.:;])/i, $text) {
if (grep /(a?[\s>]bugs?[\s.:;,])/i, $text) {
# Exclude variable assignment.
unless (grep /bugs =/, $text) {
push(@errors, [$lineno, $text]);