summaryrefslogtreecommitdiff
path: root/pod/perlsub.pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-06-18 19:37:41 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-06-18 19:37:41 +0000
commit227a8b4b89a56a5f0c4892bc310a24a6cfceb3b7 (patch)
tree9d62b508b060ee139abf54965068642252596cef /pod/perlsub.pod
parent4c50607213c2b23bfa1ef0717a5a31b40103430b (diff)
downloadperl-227a8b4b89a56a5f0c4892bc310a24a6cfceb3b7.tar.gz
back out problematic change#1105, tweak perlsub.pod
p4raw-link: @1105 on //depot/perl: e2d46a1de163ba101bb4392a8fa6d97ca3c9a323 p4raw-id: //depot/perl@1146
Diffstat (limited to 'pod/perlsub.pod')
-rw-r--r--pod/perlsub.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlsub.pod b/pod/perlsub.pod
index 5baff89473..392323a288 100644
--- a/pod/perlsub.pod
+++ b/pod/perlsub.pod
@@ -1065,7 +1065,7 @@ that understands regular expressions.
my $pat = shift;
my @got;
local(*D);
- if (opendir D, '.') { @got = grep /$pat/o, readdir D; closedir D; }
+ if (opendir D, '.') { @got = grep /$pat/, readdir D; closedir D; }
@got;
}
1;