Change 23196 by [EMAIL PROTECTED] on 2004/08/04 18:29:23
Document sv_catpvn_nomg, sv_setsv_nomg and sv_catsv_nomg.
Affected files ...
... //depot/perl/pod/perlapi.pod#189 edit
... //depot/perl/sv.h#161 edit
Differences ...
==== //depot/perl/pod/perlapi.pod#189 (text+w) ====
Index: perl/pod/perlapi.pod
--- perl/pod/perlapi.pod#188~23173~ Sat Jul 31 01:29:54 2004
+++ perl/pod/perlapi.pod Wed Aug 4 11:29:23 2004
@@ -3978,6 +3978,15 @@
=for hackers
Found in file sv.c
+=item sv_catpvn_nomg
+
+Like C<sv_catpvn> but doesn't process magic.
+
+ void sv_catpvn_nomg(SV* sv, const char* ptr, STRLEN len)
+
+=for hackers
+Found in file sv.h
+
=item sv_catpv_mg
Like C<sv_catpv>, but also handles 'set' magic.
@@ -4019,6 +4028,15 @@
=for hackers
Found in file sv.c
+=item sv_catsv_nomg
+
+Like C<sv_catsv> but doesn't process magic.
+
+ void sv_catsv_nomg(SV* dsv, SV* ssv)
+
+=for hackers
+Found in file sv.h
+
=item sv_chop
Efficient removal of characters from the beginning of the string buffer.
@@ -4761,6 +4779,15 @@
=for hackers
Found in file sv.c
+
+=item sv_setsv_nomg
+
+Like C<sv_setsv> but doesn't process magic.
+
+ void sv_setsv_nomg(SV* dsv, SV* ssv)
+
+=for hackers
+Found in file sv.h
=item sv_setuv
==== //depot/perl/sv.h#161 (text) ====
Index: perl/sv.h
--- perl/sv.h#160~22937~ Tue Jun 15 02:21:22 2004
+++ perl/sv.h Wed Aug 4 11:29:23 2004
@@ -957,6 +957,15 @@
Returns a boolean indicating whether the SV is Copy-On-Write shared hash key
scalar.
+=for apidoc Am|void|sv_catpvn_nomg|SV* sv|const char* ptr|STRLEN len
+Like C<sv_catpvn> but doesn't process magic.
+
+=for apidoc Am|void|sv_setsv_nomg|SV* dsv|SV* ssv
+Like C<sv_setsv> but doesn't process magic.
+
+=for apidoc Am|void|sv_catsv_nomg|SV* dsv|SV* ssv
+Like C<sv_catsv> but doesn't process magic.
+
=cut
*/
End of Patch.