This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta: move an entry from Internal to Bug Fixes
authorDavid Mitchell <davem@iabyn.com>
Mon, 22 May 2017 13:50:21 +0000 (14:50 +0100)
committerDavid Mitchell <davem@iabyn.com>
Mon, 22 May 2017 13:50:21 +0000 (14:50 +0100)
pod/perldelta.pod

index cabddaf..8bb233f 100644 (file)
@@ -2297,11 +2297,6 @@ elements of a subroutine signature, plus any overall checking required.
 
 =item *
 
-Perl no longer panics when switching into some locales on machines with
-buggy C<strxfrm()> implementations in their libc. [perl #121734]
-
-=item *
-
 Perl is now built with the C<PERL_OP_PARENT> compiler define enabled by
 default.  To disable it, use the C<PERL_NO_OP_PARENT> compiler define.
 This flag alters how the C<op_sibling> field is used in C<OP> structures,
@@ -2332,6 +2327,11 @@ though it was only added in 5.10.
 
 =item *
 
+Perl no longer panics when switching into some locales on machines with
+buggy C<strxfrm()> implementations in their libc. [perl #121734]
+
+=item *
+
 C< $-{$name} > would leak an C<AV> on each access if the regular
 expression had no named captures.  The same applies to access to any
 hash tied with L<Tie::Hash::NamedCapture> and C<< all =E<gt> 1 >>. [perl