perldelta - Add entries for perldiag changes in 6f1b3ab and 6c341f6
authorSteve Hay <steve.m.hay@googlemail.com>
Sun, 18 Aug 2013 18:47:49 +0000 (19:47 +0100)
committerSteve Hay <steve.m.hay@googlemail.com>
Sun, 18 Aug 2013 18:47:49 +0000 (19:47 +0100)
pod/perldelta.pod

index 6b50cb9..fc5d012 100644 (file)
@@ -478,7 +478,12 @@ and New Warnings
 
 =item *
 
-XXX L<message|perldiag/"message">
+L<Magical list constants are not supported|perldiag/"Magical list constants are
+not supported">
+
+(F) You assigned a magical array to a stash element, and then tried to use the
+subroutine from the same slot.  You are asking Perl to do something it cannot
+do, details subject to change between Perl versions.
 
 =back
 
@@ -495,6 +500,20 @@ as 0 in increment (++)">
 which expects either a number or a string matching C</^[a-zA-Z]*[0-9]*\z/>.
 See L<perlop/Auto-increment and Auto-decrement> for details.
 
+=item *
+
+L<Unexpected exit %u|perldiag/"Unexpected exit %u">
+
+(S) exit() was called or the script otherwise finished gracefully when
+C<PERL_EXIT_WARN> was set in C<PL_exit_flags>.
+
+=item *
+
+L<Unexpected exit failure %u|perldiag/"Unexpected exit failure %u">
+
+(S) An uncaught die() was called when C<PERL_EXIT_WARN> was set in
+C<PL_exit_flags>.
+
 =back
 
 =head2 Changes to Existing Diagnostics