diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-01-06 20:31:43 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-01-06 20:31:43 +0000 |
commit | 9aa05f5803ebfde70aac285fc58e97e64abbc2b4 (patch) | |
tree | bddf91144353a1f5a8c7bdd11946043c91e4b112 /pod | |
parent | 143a3e5ef1446bbe436a43486e7681c31b0c8407 (diff) | |
download | perl-9aa05f5803ebfde70aac285fc58e97e64abbc2b4.tar.gz |
Change the value of ${^TAINT} : 0 without taint checks,
1 with -T, and -1 with -t or -TU.
p4raw-id: //depot/perl@18453
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlvar.pod | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pod/perlvar.pod b/pod/perlvar.pod index 1a71142fea..271633e2c9 100644 --- a/pod/perlvar.pod +++ b/pod/perlvar.pod @@ -1105,8 +1105,9 @@ and B<-C> filetests are based on this value. =item ${^TAINT} -Reflects if taint mode is on or off (i.e. if the program was run with -B<-T> or not). True for on, false for off. +Reflects if taint mode is on or off. 1 for on (the program was run with +B<-T>), 0 for off, -1 when only taint warnings are enabled (i.e. with +B<-t> or B<-TU>). =item $PERL_VERSION |