1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 06:08:38 -04:00

make ignore check a bit stricter

This commit is contained in:
Kenichi Ishigaki 2018-12-22 05:18:46 +09:00
parent f16117c342
commit 843ecf112f

View file

@ -229,7 +229,7 @@ sub extract_constants {
$tag =~ s/[ \-]+/_/g;
($tag) = $tag =~ /^(\w+)/;
$tag =~ s/_$//;
if ($tag =~ /$ignore_tag_re/) {
if ($tag =~ /^($ignore_tag_re)/) {
print "$tag is ignored\n" if $VERBOSE;
$tag = '';
}