perldelta updates for 6728836, d60d201, 82f9620, 7878705
authorJesse Luehrs <doy@tozt.net>
Fri, 29 Jun 2012 01:27:07 +0000 (20:27 -0500)
committerJesse Luehrs <doy@tozt.net>
Fri, 29 Jun 2012 01:27:07 +0000 (20:27 -0500)
pod/perldelta.pod

index f482ed4..ed7d60f 100644 (file)
@@ -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