From ade508b5b3df74c0f55d0f46ab6c062ef3331132 Mon Sep 17 00:00:00 2001 From: "G. Richardson" Date: Wed, 19 Apr 2017 14:38:42 +0200 Subject: [PATCH] find-use.pl - Fehlergebnisse per Regex rausfiltern --- scripts/find-use.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/find-use.pl b/scripts/find-use.pl index 320a3690a..351ed86db 100755 --- a/scripts/find-use.pl +++ b/scripts/find-use.pl @@ -81,6 +81,7 @@ find(sub { next if /SL::/; next if /Support::Files/; # our own test support module next if /use (warnings|strict|vars|lib|constant|utf8)/; + next if /^use (with|the)/; my ($useline) = m/^use\s+(.*?)$/; -- 2.20.1