Regenerate internals pods.
Rafael Garcia-Suarez [Sat, 31 May 2003 18:47:50 +0000 (18:47 +0000)]
p4raw-id: //depot/perl@19650

pod/perlapi.pod
pod/perlintern.pod

index fa5381b..93d1cfb 100644 (file)
@@ -3681,6 +3681,8 @@ Efficient removal of characters from the beginning of the string buffer.
 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)
 
index 2ae4a65..41ddbba 100644 (file)
@@ -489,6 +489,9 @@ is a CV representing a possible closure.
 (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