Change 19650 by [EMAIL PROTECTED] on 2003/05/31 18:47:50
Regenerate internals pods.
Affected files ...
... //depot/perl/pod/perlapi.pod#155 edit
... //depot/perl/pod/perlintern.pod#31 edit
Differences ...
==== //depot/perl/pod/perlapi.pod#155 (text+w) ====
Index: perl/pod/perlapi.pod
--- perl/pod/perlapi.pod#154~19416~ Sun May 4 22:33:43 2003
+++ perl/pod/perlapi.pod Sat May 31 11:47:50 2003
@@ -3681,6 +3681,8 @@
SvPOK(sv) must be true and the C<ptr> must be a pointer to somewhere inside
the string buffer. The C<ptr> becomes the first character of the adjusted
string. Uses the "OOK hack".
+Beware: after this function returns, C<ptr> and SvPVX(sv) may no longer
+refer to the same chunk of data.
void sv_chop(SV* sv, char* ptr)
==== //depot/perl/pod/perlintern.pod#31 (text+w) ====
Index: perl/pod/perlintern.pod
--- perl/pod/perlintern.pod#30~19637~ Thu May 29 11:47:40 2003
+++ perl/pod/perlintern.pod Sat May 31 11:47:50 2003
@@ -489,6 +489,9 @@
(SvFAKE and name of '&' is not a meaningful combination currently but could
become so if C<my sub foo {}> is implemented.)
+Note that formats are treated as anon subs, and are cloned each time
+write is called (if necessary).
+
AV * CvPADLIST(CV *cv)
=for hackers
End of Patch.