From: Jarkko Hietaniemi Date: Tue, 31 Jul 2001 15:25:35 +0000 (+0000) Subject: Regen perlapi. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=793edb8a78c75db71bc5fbdad3eddd2f076212d2;p=p5sagit%2Fp5-mst-13.2.git Regen perlapi. p4raw-id: //depot/perl@11522 --- diff --git a/pod/perlapi.pod b/pod/perlapi.pod index bee65f6..e41cf8a 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -564,7 +564,7 @@ Found in file op.h Recognise (or not) a number. The type of the number is returned (0 if unrecognised), otherwise it is a bit-ORed combination of IS_NUMBER_IN_UV, IS_NUMBER_GREATER_THAN_UV_MAX, IS_NUMBER_NOT_INT, -IS_NUMBER_NEG, IS_NUMBER_INFINITY (defined in perl.h). +IS_NUMBER_NEG, IS_NUMBER_INFINITY, IS_NUMBER_NAN (defined in perl.h). If the value of the number can fit an in UV, it is returned in the *valuep IS_NUMBER_IN_UV will be set to indicate that *valuep is valid, IS_NUMBER_IN_UV @@ -2850,8 +2850,9 @@ Found in file sv.c =item sv_2mortal -Marks an existing SV as mortal. The SV will be destroyed when the current -context ends. See also C and C. +Marks an existing SV as mortal. The SV will be destroyed "soon", either +by an explicit call to FREETMPS, or by an implicit call at places such as +statement boundaries. See also C and C. SV* sv_2mortal(SV* sv) @@ -3322,8 +3323,9 @@ Found in file sv.c =item sv_mortalcopy Creates a new SV which is a copy of the original SV (using C). -The new SV is marked as mortal. It will be destroyed when the current -context ends. See also C and C. +The new SV is marked as mortal. It will be destroyed "soon", either by an +explicit call to FREETMPS, or by an implicit call at places such as +statement boundaries. See also C and C. SV* sv_mortalcopy(SV* oldsv) @@ -3333,8 +3335,9 @@ Found in file sv.c =item sv_newmortal Creates a new null SV which is mortal. The reference count of the SV is -set to 1. It will be destroyed when the current context ends. See -also C and C. +set to 1. It will be destroyed "soon", either by an explicit call to +FREETMPS, or by an implicit call at places such as statement boundaries. +See also C and C. SV* sv_newmortal()