summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-05-31 18:47:50 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-05-31 18:47:50 +0000
commit5c3943b6e9c69b628b00a6d2e7f5e1ac3f2ac312 (patch)
tree008381b4c1c319d07384b7c07840b451121f1b69
parent71f882da828ecd892a162839f27e4625d69023fb (diff)
downloadperl-5c3943b6e9c69b628b00a6d2e7f5e1ac3f2ac312.tar.gz
Regenerate internals pods.
p4raw-id: //depot/perl@19650
-rw-r--r--pod/perlapi.pod2
-rw-r--r--pod/perlintern.pod3
2 files changed, 5 insertions, 0 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod
index fa5381bc92..93d1cfb16f 100644
--- a/pod/perlapi.pod
+++ b/pod/perlapi.pod
@@ -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)
diff --git a/pod/perlintern.pod b/pod/perlintern.pod
index 2ae4a654dd..41ddbbad37 100644
--- a/pod/perlintern.pod
+++ b/pod/perlintern.pod
@@ -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