diff options
author | Jesse Luehrs <doy@tozt.net> | 2012-06-28 20:27:07 -0500 |
---|---|---|
committer | Jesse Luehrs <doy@tozt.net> | 2012-06-28 20:27:07 -0500 |
commit | e013ada0e4202b68c9a3047a37a1e3805672e6ad (patch) | |
tree | e8ffc607ed039d35d44dc86980bb388f2caaa02c /pod | |
parent | e09ac076a1dab8e2c5712775f478fcfb61cb7eb3 (diff) | |
download | perl-e013ada0e4202b68c9a3047a37a1e3805672e6ad.tar.gz |
perldelta updates for 6728836, d60d201, 82f9620, 7878705
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perldelta.pod | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod index f482ed412f..ed7d60f27d 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -202,6 +202,11 @@ C<chr()> now warns when passed a negative value [perl #83048]. C<srand()> now warns when passed a value that doesn't fit in a C<UV> (since the value will be truncated rather than overflowing) [perl #40605]. +=item * + +Running perl with the C<-i> flag now warns if no input files are provided on +the command line [perl #113410]. + =back =head2 Changes to Existing Diagnostics @@ -267,6 +272,21 @@ not exist before C<local>. C<scalar(write)> no longer returns multiple items [perl #73690]. +=item * + +String to floating point conversions no longer misparse certain strings under +C<use locale> [perl #109318]. + +=item * + +C<@INC> filters that die no longer leak memory [perl #92252]. + +=item * + +The implementations of overloaded operations are now called in the correct +context. This allows, among other things, being able to properly override +C<< <> >> [perl #47119]. + =back =head1 Testing |