diff options
| author | fukachan <fukachan> | 2004-04-27 13:31:54 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2004-04-27 13:31:54 +0000 |
| commit | cb1cc08715063b57bb0f436818921200f2d65989 (patch) | |
| tree | cc72fed73002beb70e2015f68a6659b9fefda99f /fml/lib/IO | |
| parent | e811ff3057e5c2019d5b9f67b3d3c2fd7dd4b3c3 (diff) | |
| download | fml8-cb1cc08715063b57bb0f436818921200f2d65989.tar.gz fml8-cb1cc08715063b57bb0f436818921200f2d65989.tar.bz2 fml8-cb1cc08715063b57bb0f436818921200f2d65989.zip | |
use $regexp as itself, not quotemeta()-ify.
Diffstat (limited to 'fml/lib/IO')
| -rw-r--r-- | fml/lib/IO/Adapter.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fml/lib/IO/Adapter.pm b/fml/lib/IO/Adapter.pm index 5f2f1e19..2613a06c 100644 --- a/fml/lib/IO/Adapter.pm +++ b/fml/lib/IO/Adapter.pm @@ -4,7 +4,7 @@ # All rights reserved. This program is free software; you can # redistribute it and/or modify it under the same terms as Perl itself. # -# $FML: Adapter.pm,v 1.31 2004/04/10 07:40:01 fukachan Exp $ +# $FML: Adapter.pm,v 1.32 2004/04/11 12:58:38 fukachan Exp $ # package IO::Adapter; @@ -451,8 +451,9 @@ sub find return $self->md_find($regexp, $args); } + # XXX NO, quotemeta $regexp before call find() method. # we may need quote for special address e.g. a+b@domain. - $regexp = quotemeta($regexp); + # $regexp = quotemeta($regexp); # What we want, key or key+value ? if (defined $args->{ want }) { |
