diff options
author | Jeffrey Friedl <jfriedl@regex.info> | 2002-03-04 04:14:45 -0800 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-04 22:06:22 +0000 |
commit | a1ce9542567c946a9e13885800d99a27d4b700db (patch) | |
tree | f1fafd26dcf8b7fe3881b1cfd4c0c0b8296f22a1 /pod/perlsec.pod | |
parent | b27299349ad81150118bac89c15f9a07eb50cb15 (diff) | |
download | perl-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.pod | 2 |
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>) { |