This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
typo in pod/perlfunc.pod
[perl5.git] / pod / perldelta.pod
1 =head1 NAME
2
3 perldelta - what is new for perl v5.9.0
4
5 =head1 DESCRIPTION
6
7 This document describes differences between the 5.8.0 release and
8 the 5.9.0 release.
9
10 =head1 Incompatible Changes
11
12 =head1 Core Enhancements
13
14 =head2 Tied Arrays with Negative Array Indices
15
16 Formerly, the indices passed to C<FETCH>, C<STORE>, C<EXISTS>, and
17 C<DELETE> methods in tied array class were always non-negative.  If
18 the actual argument was negative, Perl would call FETCHSIZE implicitly
19 and add the result to the index before passing the result to the tied
20 array method.  This behavior is now optional.  If the tied array class
21 contains a package variable named C<$NEGATIVE_INDICES> which is set to
22 a true value, negative values will be passed to C<FETCH>, C<STORE>,
23 C<EXISTS>, and C<DELETE> unchanged.
24
25 =head1 Modules and Pragmata
26
27 =head1 Utility Changes
28
29 =head1 New Documentation
30
31 =head1 Performance Enhancements
32
33 =head1 Installation and Configuration Improvements
34
35 =head1 Selected Bug Fixes
36
37 =head1 New or Changed Diagnostics
38
39 =head1 Changed Internals
40
41 =head1 New Tests
42
43 =head1 Known Problems
44
45 =head1 Platform Specific Problems
46
47 =head1 Reporting Bugs
48
49 If you find what you think is a bug, you might check the articles
50 recently posted to the comp.lang.perl.misc newsgroup and the perl
51 bug database at http://bugs.perl.org/ .  There may also be
52 information at http://www.perl.com/ , the Perl Home Page.
53
54 If you believe you have an unreported bug, please run the B<perlbug>
55 program included with your release.  Be sure to trim your bug down
56 to a tiny but sufficient test case.  Your bug report, along with the
57 output of C<perl -V>, will be sent off to perlbug@perl.org to be
58 analysed by the Perl porting team.
59
60 =head1 SEE ALSO
61
62 The F<Changes> file for exhaustive details on what changed.
63
64 The F<INSTALL> file for how to build Perl.
65
66 The F<README> file for general stuff.
67
68 The F<Artistic> and F<Copying> files for copyright information.
69
70 =cut