diff options
author | Stas Bekman <stas@stason.org> | 2003-08-29 10:11:41 -0700 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-08-30 05:37:13 +0000 |
commit | c55831ac3c360ec7500d3c9e928cfb5e54b0d876 (patch) | |
tree | 8315c48005ef4838175a28a2881f7e02e1a55c58 /sv.h | |
parent | c022218576a859aaf45ee04ac6beca35d37620fc (diff) | |
download | perl-c55831ac3c360ec7500d3c9e928cfb5e54b0d876.tar.gz |
[patch sv.h api doc] SvTAINTED_on does its craft only under -T
Message-ID: <3F4FEBBD.8000901@stason.org>
p4raw-id: //depot/perl@20941
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -803,7 +803,7 @@ Checks to see if an SV is tainted. Returns TRUE if it is, FALSE if not. =for apidoc Am|void|SvTAINTED_on|SV* sv -Marks an SV as tainted. +Marks an SV as tainted if tainting is enabled. =for apidoc Am|void|SvTAINTED_off|SV* sv Untaints an SV. Be I<very> careful with this routine, as it short-circuits @@ -814,7 +814,7 @@ standard perl fashion, via a carefully crafted regexp, rather than directly untainting variables. =for apidoc Am|void|SvTAINT|SV* sv -Taints an SV if tainting is enabled +Taints an SV if tainting is enabled. =cut */ |