diff options
author | Michael G. Schwern <schwern@pobox.com> | 2001-12-29 18:46:25 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-30 15:57:25 +0000 |
commit | 317ea90d97caba0232674f77b3cbed1394243c39 (patch) | |
tree | 7759cdc2fb7ce9d3937aac6424fdd1da46ac68c1 /pod/perlrun.pod | |
parent | d17aa069f1b4912cd5ee512e17998985c6151513 (diff) | |
download | perl-317ea90d97caba0232674f77b3cbed1394243c39.tar.gz |
-t without -w
Message-ID: <20011230044625.GA14386@blackrider>
p4raw-id: //depot/perl@13953
Diffstat (limited to 'pod/perlrun.pod')
-rw-r--r-- | pod/perlrun.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlrun.pod b/pod/perlrun.pod index 137ecd30d8..138e34499c 100644 --- a/pod/perlrun.pod +++ b/pod/perlrun.pod @@ -700,8 +700,8 @@ program will be searched for strictly on the PATH. =item B<-t> Like B<-T>, but taint checks will issue warnings rather than fatal -errors. Also, all warnings are turned on as if you had used also -a B<-w>. +errors. These warnings can be controlled normally with C<no warnings +qw(taint)>. B<NOTE: this is not a substitute for -T.> This is meant only to be used as a temporary development aid while securing legacy code: |