summaryrefslogtreecommitdiff
path: root/pod/perlsec.pod
diff options
context:
space:
mode:
authorJeffrey Friedl <jfriedl@regex.info>2002-03-04 04:14:45 -0800
committerJarkko Hietaniemi <jhi@iki.fi>2002-03-04 22:06:22 +0000
commita1ce9542567c946a9e13885800d99a27d4b700db (patch)
treef1fafd26dcf8b7fe3881b1cfd4c0c0b8296f22a1 /pod/perlsec.pod
parentb27299349ad81150118bac89c15f9a07eb50cb15 (diff)
downloadperl-a1ce9542567c946a9e13885800d99a27d4b700db.tar.gz
small doc update to promote '-no_match_vars' of 'use English'
Message-Id: <200203042014.g24KEjP08407@ventrue.corp.yahoo.com> p4raw-id: //depot/perl@15021
Diffstat (limited to 'pod/perlsec.pod')
-rw-r--r--pod/perlsec.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlsec.pod b/pod/perlsec.pod
index c86ac7c828..53192cb3ca 100644
--- a/pod/perlsec.pod
+++ b/pod/perlsec.pod
@@ -242,7 +242,7 @@ not called with a string that the shell could expand. This is by far the
best way to call something that might be subjected to shell escapes: just
never call the shell at all.
- use English;
+ use English '-no_match_vars';
die "Can't fork: $!" unless defined($pid = open(KID, "-|"));
if ($pid) { # parent
while (<KID>) {