summaryrefslogtreecommitdiff
path: root/fml/lib/IO
diff options
context:
space:
mode:
authorfukachan <fukachan>2004-04-27 13:31:54 +0000
committerfukachan <fukachan>2004-04-27 13:31:54 +0000
commitcb1cc08715063b57bb0f436818921200f2d65989 (patch)
treecc72fed73002beb70e2015f68a6659b9fefda99f /fml/lib/IO
parente811ff3057e5c2019d5b9f67b3d3c2fd7dd4b3c3 (diff)
downloadfml8-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.pm5
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 }) {