diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-02-20 15:31:50 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-02-20 15:31:50 +0000 |
commit | 438cc6089d922e42fd6635c1b8212ad034402745 (patch) | |
tree | b2ddf444b754ecf939209c93acccc8bf038450eb /pod/perlguts.pod | |
parent | 27dd2420592a44007a8d1534563f52fae745a50a (diff) | |
download | perl-438cc6089d922e42fd6635c1b8212ad034402745.tar.gz |
Retract the #8838 and #8840 for now because of
the DB_File tie problem.
p4raw-id: //depot/perl@8846
Diffstat (limited to 'pod/perlguts.pod')
-rw-r--r-- | pod/perlguts.pod | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod index 557dbaf306..54d071596a 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -530,11 +530,10 @@ class. SV is returned. SV* newSVrv(SV* rv, const char* classname); -Copies integer, unsigned integer or double into an SV whose reference is C<rv>. SV is blessed +Copies integer or double into an SV whose reference is C<rv>. SV is blessed if C<classname> is non-null. SV* sv_setref_iv(SV* rv, const char* classname, IV iv); - SV* sv_setref_uv(SV* rv, const char* classname, UV uv); SV* sv_setref_nv(SV* rv, const char* classname, NV iv); Copies the pointer value (I<the address, not the string!>) into an SV whose |