X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pod%2Fperl5005delta.pod;h=b133c0dd813ddb9816f67972c84555f3dec5f42e;hb=1e6da01743571311bdbed539271d576c28f4c2ec;hp=ca9f185bc5a6c1e3bc94c985b9021576833b26bd;hpb=b4bc034f8b4a9c19c30b638615fa469e7e5a6d0d;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pod/perl5005delta.pod b/pod/perl5005delta.pod index ca9f185..b133c0d 100644 --- a/pod/perl5005delta.pod +++ b/pod/perl5005delta.pod @@ -482,10 +482,10 @@ magic lvalue too. For instance, this code now acts differently: In previous versions, this would print "hello", but it now prints "g'bye". -=head2 EE now reads in records +=head2 <> now reads in records If C<$/> is a reference to an integer, or a scalar that holds an integer, -EE will read in records instead of lines. For more info, see +<> will read in records instead of lines. For more info, see L. =head1 Supported Platforms @@ -759,10 +759,10 @@ only with arrays that have a hash reference at index 0. =item Can't localize pseudo-hash element -(F) You said something like C{'key'}>, where $ar is +(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[$ar-E[0]{'key'}]>. +element directly -- C<< local $ar->[$ar->[0]{'key'}] >>. =item Can't use %%! because Errno.pm is not available