Change 20941 by [EMAIL PROTECTED] on 2003/08/30 05:37:13
Subject: [patch sv.h api doc] SvTAINTED_on does its craft only under -T
From: Stas Bekman <[EMAIL PROTECTED]>
Date: Fri, 29 Aug 2003 17:11:41 -0700
Message-ID: <[EMAIL PROTECTED]>
Affected files ...
... //depot/perl/pod/perlapi.pod#160 edit
... //depot/perl/sv.h#145 edit
Differences ...
==== //depot/perl/pod/perlapi.pod#160 (text+w) ====
Index: perl/pod/perlapi.pod
--- perl/pod/perlapi.pod#159~20912~ Tue Aug 26 13:15:40 2003
+++ perl/pod/perlapi.pod Fri Aug 29 22:37:13 2003
@@ -3309,7 +3309,7 @@
=item SvTAINT
-Taints an SV if tainting is enabled
+Taints an SV if tainting is enabled.
void SvTAINT(SV* sv)
@@ -3342,7 +3342,7 @@
=item SvTAINTED_on
-Marks an SV as tainted.
+Marks an SV as tainted if tainting is enabled.
void SvTAINTED_on(SV* sv)
==== //depot/perl/sv.h#145 (text) ====
Index: perl/sv.h
--- perl/sv.h#144~20605~ Sun Aug 10 13:38:39 2003
+++ perl/sv.h Fri Aug 29 22:37:13 2003
@@ -803,7 +803,7 @@
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 @@
untainting variables.
=for apidoc Am|void|SvTAINT|SV* sv
-Taints an SV if tainting is enabled
+Taints an SV if tainting is enabled.
=cut
*/
End of Patch.