X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/884bad00cca84e3362ce7b5e71a81555b48ce98b..ef5eb418bf9cb919bb2d82393f4570a790061e2e:/pod/perl5005delta.pod diff --git a/pod/perl5005delta.pod b/pod/perl5005delta.pod index b9c7deb..6266125 100644 --- a/pod/perl5005delta.pod +++ b/pod/perl5005delta.pod @@ -89,7 +89,7 @@ begin with C be referenced with a C prefix. The bare function names without the C prefix are supported with macros, but this support may cease in a future release. -See L. +See L. =item * @@ -101,7 +101,7 @@ If you see a compiler error that talks about the variable C not being declared (when building a module that has XS code), you need to add C at the beginning of the block that elicited the error. -The API function C should be used instead of +The API function C should be used instead of directly accessing perl globals as C. The API call is backward compatible with existing perls and provides source compatibility with threading is enabled. @@ -492,7 +492,7 @@ In previous versions, this would print "hello", but it now prints "g'bye". If C<$/> is a reference to an integer, or a scalar that holds an integer, <> will read in records instead of lines. For more info, see -L. +L>. =head1 Supported Platforms @@ -523,7 +523,7 @@ encapsulation of Perl. GCC and EGCS are now supported on Win32. See F, aka L. VMS configuration system has been rewritten. See F (installed -as L on some systems). +as F on some systems). The hints files for most Unix platforms have seen incremental improvements. @@ -572,7 +572,7 @@ in perl. =item Test -A framework for writing testsuites. +A framework for writing test suites. =item Tie::Array @@ -722,7 +722,7 @@ imported with the C pragma). To silently interpret it as the Perl operator, use the C prefix on the operator (e.g. C) or by declaring the subroutine -to be an object method (see L). +to be an object method (see L). =item Bad index while coercing array into hash @@ -766,7 +766,7 @@ only with arrays that have a hash reference at index 0. (F) You said something like C<< local $ar->{'key'} >>, where $ar is a reference to a pseudo-hash. That hasn't been implemented yet, but you can get a similar effect by localizing the corresponding array -element directly -- C<< local $ar->[$ar->[0]{'key'}] >>. +element directly: C<< local $ar->[$ar->[0]{'key'}] >>. =item Can't use %%! because Errno.pm is not available