summaryrefslogtreecommitdiff
path: root/ext/File/Glob
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-04-29 19:55:24 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-04-29 19:55:24 +0000
commit150b260b14b51796fc2bc1a3a4c7b0de7d4daf7d (patch)
treec6b411cb7f196920c37444bd85b4607e247fd26f /ext/File/Glob
parentb2ec7025a588bf216a835c23fbc857664a8cd556 (diff)
downloadperl-150b260b14b51796fc2bc1a3a4c7b0de7d4daf7d.tar.gz
make lib/syslog.t portable to systems that don't have _PATH_LOG,
make _PATH_LOG() return "" if unavailable p4raw-id: //depot/perl@6018
Diffstat (limited to 'ext/File/Glob')
-rw-r--r--ext/File/Glob/Glob.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/File/Glob/Glob.pm b/ext/File/Glob/Glob.pm
index 1353d4ffc6..98ee34d57d 100644
--- a/ext/File/Glob/Glob.pm
+++ b/ext/File/Glob/Glob.pm
@@ -331,9 +331,9 @@ Be aware that all filenames returned from File::Glob are tainted.
=item *
If you want to use multiple patterns, e.g. C<bsd_glob "a* b*">, you should
-probably throw them in a set as in C<glob "{a*,b*}">. This is because
-the argument to glob isn't subjected to parsing by the C shell. Remember
-that you can use a backslash to escape things.
+probably throw them in a set as in C<bsd_glob "{a*,b*}">. This is because
+the argument to bsd_glob() isn't subjected to parsing by the C shell.
+Remember that you can use a backslash to escape things.
=item *