From: Jarkko Hietaniemi Date: Sun, 28 Oct 2001 01:53:34 +0000 (+0000) Subject: Regen perlapi, perltoc. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1fdc5aa6cb28b98c33ebf0779a57b3e0077d71b7;p=p5sagit%2Fp5-mst-13.2.git Regen perlapi, perltoc. p4raw-id: //depot/perl@12721 --- diff --git a/pod/perlapi.pod b/pod/perlapi.pod index 6a23c14..0435058 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -2552,14 +2552,14 @@ Found in file sv.h Like C, but converts sv to byte representation first if necessary. - char* SvPVbyte_nolen(SV* sv, STRLEN len) + char* SvPVbyte_nolen(SV* sv) =for hackers Found in file sv.h =item SvPVutf8 -Like C, but converts sv to uft8 first if necessary. +Like C, but converts sv to utf8 first if necessary. char* SvPVutf8(SV* sv, STRLEN len) @@ -2568,7 +2568,7 @@ Found in file sv.h =item SvPVutf8x -Like C, but converts sv to uft8 first if necessary. +Like C, but converts sv to utf8 first if necessary. Guarantees to evalute sv only once; use the more efficient C otherwise. @@ -2579,7 +2579,7 @@ Found in file sv.h =item SvPVutf8x_force -Like C, but converts sv to uft8 first if necessary. +Like C, but converts sv to utf8 first if necessary. Guarantees to evalute sv only once; use the more efficient C otherwise. @@ -2590,7 +2590,7 @@ Found in file sv.h =item SvPVutf8_force -Like C, but converts sv to uft8 first if necessary. +Like C, but converts sv to utf8 first if necessary. char* SvPVutf8_force(SV* sv, STRLEN len) @@ -2599,9 +2599,9 @@ Found in file sv.h =item SvPVutf8_nolen -Like C, but converts sv to uft8 first if necessary. +Like C, but converts sv to utf8 first if necessary. - char* SvPVutf8_nolen(SV* sv, STRLEN len) + char* SvPVutf8_nolen(SV* sv) =for hackers Found in file sv.h @@ -2950,22 +2950,22 @@ for a version which guarantees to evaluate sv only once. =for hackers Found in file sv.h -=item SvUVx +=item SvUVX -Coerces the given SV to an unsigned integer and returns it. Guarantees to -evaluate sv only once. Use the more efficent C otherwise. +Returns the raw value in the SV's UV slot, without checks or conversions. +Only use when you are sure SvIOK is true. See also C. - UV SvUVx(SV* sv) + UV SvUVX(SV* sv) =for hackers Found in file sv.h -=item SvUVX +=item SvUVx -Returns the raw value in the SV's UV slot, without checks or conversions. -Only use when you are sure SvIOK is true. See also C. +Coerces the given SV to an unsigned integer and returns it. Guarantees to +evaluate sv only once. Use the more efficent C otherwise. - UV SvUVX(SV* sv) + UV SvUVx(SV* sv) =for hackers Found in file sv.h diff --git a/pod/perltoc.pod b/pod/perltoc.pod index 859c2a4..e111bb6 100644 --- a/pod/perltoc.pod +++ b/pod/perltoc.pod @@ -2764,8 +2764,8 @@ mean? =back -=head2 perlfaq4 - Data Manipulation ($Revision: 1.5 $, $Date: 2001/10/12 -15:20:13 $) +=head2 perlfaq4 - Data Manipulation ($Revision: 1.7 $, $Date: 2001/10/26 +19:46:03 $) =over 4 @@ -2783,7 +2783,12 @@ numbers I should be getting (eg, 19.95)? =item Does Perl have a round() function? What about ceil() and floor()? Trig functions? -=item How do I convert bits into ints? +=item How do I convert between numeric representations: + +B, B, B, B, B, B =item Why doesn't & work the way I want it to? @@ -3133,8 +3138,8 @@ file? =back -=head2 perlfaq7 - Perl Language Issues ($Revision: 1.2 $, $Date: 2001/10/16 -13:27:22 $) +=head2 perlfaq7 - Perl Language Issues ($Revision: 1.3 $, $Date: 2001/10/19 +14:39:24 $) =over 4 @@ -4705,6 +4710,11 @@ It's easier to rsync the source tree, It's more recent, It's more reliable It's easier to rsync the patches, It's a good reference, Finding a start point, Finding how to fix a bug, Finding the source of misbehaviour +=item Perlbug remote interface + +1 http://bugs.perl.org, 2 bugdb@perl.org, 3 +commands_and_bugdids@bugs.perl.org, notes, patches, tests + =item Submitting patches L, L and L, L, @@ -7144,6 +7154,29 @@ method, locked =back +=head2 threadshared::shared, threads::shared - Perl extension for sharing +data structures between threads + +=over 4 + +=item SYNOPSIS + +=item DESCRIPTION + +=over 4 + +=item EXPORT + +=back + +=item BUGS + +=item AUTHOR + +=item SEE ALSO + +=back + =head2 threads - Perl extension allowing use of interpreter based threads from perl @@ -7216,18 +7249,6 @@ FETCH_I_ATTRIBUTES, MODIFY_I_ATTRIBUTES =back -=head2 attrs - set/get attributes of a subroutine (deprecated) - -=over 4 - -=item SYNOPSIS - -=item DESCRIPTION - -method, locked - -=back - =head2 autouse - postpone load of modules until a function is used =over 4 @@ -7632,34 +7653,6 @@ C, C, C =back -=head2 threads - Perl extension allowing use of interpreter based threads -from perl - -=over 4 - -=item SYNOPSIS - -=item DESCRIPTION - -new, function, LIST, $threads->join, $threads->detach, threads->self, -$threads->tid - -=item TODO - -Fix so the return value is returned when you join, Add join_all, Fix memory -leaks! - -=item AUTHOR and COPYRIGHT - -=item BUGS - -creating a thread from within a thread is unsafe under win32, -PERL_OLD_SIGNALS are not threadsafe, will not be - -=item SEE ALSO - -=back - =head2 utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source code @@ -9385,7 +9378,7 @@ B, B, B =over 4 -=item Using DB_File with Berkeley DB version 2 or 3 +=item Using DB_File with Berkeley DB version 2 or greater =item Interface to Berkeley DB @@ -9911,22 +9904,6 @@ arrays =back -=head2 Errno - System errno constants - -=over 4 - -=item SYNOPSIS - -=item DESCRIPTION - -=item CAVEATS - -=item AUTHOR - -=item COPYRIGHT - -=back - =head2 Exporter - Implements default import method for modules =over 4 @@ -10660,7 +10637,7 @@ shdist, make zipdist, make ci =item ENVIRONMENT -PERL_MM_OPT +PERL_MM_OPT, PERL_MM_USE_DEFAULT =item SEE ALSO @@ -10892,6 +10869,8 @@ C, C, C =item CAVEAT +$dont_use_nlink, symlinks + =item NOTES =item HISTORY @@ -11040,7 +11019,7 @@ splitpath splitdir -catpath() +catpath abs2rel @@ -11497,7 +11476,7 @@ B<$_>, B<$status>, B and B, B =item The lonesome dash -=item Argument call-back +=item Argument callback =back @@ -11532,6 +11511,10 @@ prefix_pattern, debug (default: disabled) =item GetOptions does not return a false result when an option is not supplied +=item GetOptions does not split the command line correctly + +=item How do I put a "-?" option into a Getopt::Long? + =back =item AUTHOR @@ -14991,13 +14974,14 @@ B<-output>, B<-sections>, B<-ranges> =item DESCRIPTION -alt, indent, loose, quotes, sentence, width +alt, code, indent, loose, quotes, sentence, width =item DIAGNOSTICS -Bizarre space in item, Can't open %s for reading: %s, Invalid quote -specification "%s", %s:%d: Unknown command paragraph "%s", Unknown escape: -%s, Unknown sequence: %s, Unmatched =back +Bizarre space in item, Item called without tag, Can't open %s for reading: +%s, Invalid quote specification "%s", %s:%d: Unknown command paragraph +"%s", %s:%d: Unknown escape: %s, %s:%d: Unknown sequence: %s, %s:%d: +Unmatched =back =item RESTRICTIONS @@ -16174,7 +16158,8 @@ TIESCALAR classname, LIST, FETCH this, STORE this, value, DESTROY this =back -=head2 Time::HiRes - High resolution ualarm, usleep, and gettimeofday +=head2 Time::HiRes - High resolution alarm, sleep, gettimeofday, interval +timers =over 4