Do an exact match

git-svn-id: svn://10.0.0.236/trunk@106526 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
seawood%netscape.com
2001-10-29 04:48:55 +00:00
parent 73d57b769c
commit f7364a1682

View File

@@ -22,6 +22,6 @@
undef @out;
foreach $d (@ARGV) {
push @out, $d if (!grep(/$d/, @out));
push @out, $d if (!grep(/^$d$/, @out));
}
print "@out\n"