A mechanism for inlineable OP equivalents of XSUBs is a TODO.
[p5sagit/p5-mst-13.2.git] / pod / perl5113delta.pod
index f46a34f..55fe29d 100644 (file)
@@ -1,48 +1,37 @@
 =head1 NAME
 
-[ this is a template for a new perldelta file. Any text flagged as
-XXX needs to be processed before release. ]
-
 perldelta - what is new for perl v5.11.3
 
 =head1 DESCRIPTION
 
-This document describes differences between the 5.11.3 release and
+This document describes differences between the 5.11.2 release and
 the 5.11.3 release.
 
-If you are upgrading from an earlier release such as 5.11.3, first read
-the L<perl5XXXdelta>, which describes differences between 5.11.3 and
-5.10.0
+If you are upgrading from an earlier release such as 5.11.1, first read
+the L<perl5112delta>, which describes differences between 5.11.1 and
+5.11.2
 
-=head1 Notice
+=head1 Incompatible Changes
 
-XXX Any important notices here
+=over
 
-=head1 Incompatible Changes
+=item Filehandles are blessed directly into C<IO::Handle::>, as C<FileHandle> is merely a wrapper around C<IO::Handle>.
 
-XXX For a release on a stable branch, this section aspires to be:
+The previous behaviour was to bless Filehandles into L<FileHandle>
+(an empty proxy class) if it was loaded into memory and otherwise
+to bless them into C<IO::Handle::>.
 
-    There are no changes intentionally incompatible with 5.11.3. If any
-    exist, they are bugs and reports are welcome.
 
+=back
 
 =head1 Core Enhancements
 
-XXX New core language features go here. Summarise user-visible core language
-enhancements. Particularly prominent performance optimisations could go
-here, but most should go in the L</Performance Enhancements> section.
-
 =head2 Unicode version
 
-Perl is shipped with the latest Unicode version, 5.2, October 2009.  See
+Perl is shipped with the latest Unicode version, 5.2, dated October 2009.  See
 L<http://www.unicode.org/versions/Unicode5.2.0> for details about this release
-of Unicode.
-
-But, an installation can now fairly easily change Perl to operate on any
-Unicode release.  Perl is shipped with the latest official release, but
-an installation can download and install any prior release from Unicode, and
-cause Perl to work with that (or even multiple releases).  Instructions are in
-L<perlunicode>.
+of Unicode.  See L<perlunicode> for instructions on installing and using
+older versions of Unicode.
 
 =head2 Unicode properties
 
@@ -57,7 +46,7 @@ Perl now fully supports the Unicode compound-style of using C<=> and C<:>
 in writing regular expressions: C<\p{property=value}> and
 C<\p{property:value}> (both of which mean the same thing).
 
-Perl now supports fully the Unicode loose matching rules for text
+Perl now fully supports the Unicode loose matching rules for text
 between the braces in C<\p{...}> constructs.  In addition, Perl also allows
 underscores between digits of numbers.
 
@@ -66,23 +55,48 @@ now accepted.
 
 C<qr/\X/>, which matches a Unicode logical character, has been expanded to work
 better with various Asian languages.  It now is defined as an C<extended
-grapheme cluster>.  (See L<http://www.unicode.org/reports/tr29/>).  One change
-due to this is that C<\X> will match the whole sequence C<S<CR LF>>.  Another
-change is that C<\X> will match an isolated mark.  Marks generally come after a
-base character, but it is possible in Unicode to have them in isolation, and
-C<\X> will now handle that case.  Otherwise, this change should be transparent
-for the non-affected languages.
+grapheme cluster>.  (See L<http://www.unicode.org/reports/tr29/>).
+Anything matched previously that made sense will continue to be matched.  But
+in addition:
+
+=over
+
+=item *
+
+C<\X> will now not break apart a C<S<CR LF>> sequence.
+
+=item *
+
+C<\X> will now match a sequence including the C<ZWJ> and C<ZWNJ> characters.
+
+=item *
+
+C<\X> will now always match at least one character, including an initial mark.
+Marks generally come after a base character, but it is possible in Unicode to
+have them in isolation, and C<\X> will now handle that case, for example at the
+beginning of a line or after a C<ZWSP>.  And this is the part where C<\X>
+doesn't match the things that it used to that don't make sense.  Formerly, for
+example, you could have the nonsensical case of an accented LF.
+
+=item *
+
+C<\X> will now match a (Korean) Hangul syllable sequence, and the Thai and Lao
+exception cases.
+
+=back
+
+Otherwise, this change should be transparent for the non-affected languages.
 
 C<\p{...}> matches using the Canonical_Combining_Class property were
 completely broken in previous Perls.  This is now fixed.
 
-In previous Perls, the Unicode Decomposition_Type=Compat property and a
+In previous Perls, the Unicode C<Decomposition_Type=Compat> property and a
 Perl extension had the same name, which led to neither matching all the
 correct values (with more than 100 mistakes in one, and several thousand
 in the other).  The Perl extension has now been renamed to be
-Decomposition_Type=Noncanonical (short: dt=noncanon).  It has the same
+C<Decomposition_Type=Noncanonical> (short: C<dt=noncanon>).  It has the same
 meaning as was previously intended, namely the union of all the
-non-canonical Decomposition types, with Unicode Compat being just one of
+non-canonical Decomposition types, with Unicode C<Compat> being just one of
 those.
 
 C<\p{Uppercase}> and C<\p{Lowercase}> have been brought into line with the
@@ -99,25 +113,25 @@ similar, plus Bi-directional controls.
 
 C<\p{Alpha}> now matches the same characters as C<\p{Alphabetic}>.  The Perl
 definition included a number of things that aren't really alpha (all
-marks), while omitting many that were.  The Unicode definition is
-clearly better, so we are switching to it.  As a direct consequence, the
+marks), while omitting many that were.  As a direct consequence, the
 definitions of C<\p{Alnum}> and C<\p{Word}> which depend on Alpha also change.
 
 C<\p{Word}> also now doesn't match certain characters it wasn't supposed
 to, such as fractions.
 
-C<\p{Print}> no longer matches the line control characters: tab, lf, cr,
-ff, vt, and nel.  This brings it in line with the documentation.
+C<\p{Print}> no longer matches the line control characters: Tab, LF, CR,
+FF, VT, and NEL.  This brings it in line with the documentation.
 
-\p{Decomposition_Type=Canonical} now includes the Hangul syllables
+C<\p{Decomposition_Type=Canonical}> now includes the Hangul syllables.
 
 The Numeric type property has been extended to include the Unihan
 characters.
 
-There is a new Perl extension, the 'Present_In', or simply 'In'
+There is a new Perl extension, the 'Present_In', or simply 'In',
 property.  This is an extension of the Unicode Age property, but
-C<\p{In=5.0}> matches any code point whose usage has been determined as of
-Unicode version 5.0.  The C<\p{Age=5.0}> only matches code points added in 5.0.
+C<\p{In=5.0}> matches any code point whose usage has been determined
+I<as of> Unicode version 5.0.  The C<\p{Age=5.0}> only matches code points
+added in I<precisely> version 5.0.
 
 A number of properties did not have the correct values for unassigned
 code points.  This is now fixed.  The affected properties are
@@ -125,15 +139,14 @@ Bidi_Class, East_Asian_Width, Joining_Type, Decomposition_Type,
 Hangul_Syllable_Type, Numeric_Type, and Line_Break.
 
 The Default_Ignorable_Code_Point, ID_Continue, and ID_Start properties
-have been updated to their current definitions.
+have been updated to their current Unicode definitions.
 
 Certain properties that are supposed to be Unicode internal-only were
 erroneously exposed by previous Perls.  Use of these in regular
-expressions will now generate a deprecated warning message, if those
-warnings are enabled.  The properties are: Other_Alphabetic,
-Other_Default_Ignorable_Code_Point, Other_Grapheme_Extend,
-Other_ID_Continue, Other_ID_Start, Other_Lowercase, Other_Math, and
-Other_Uppercase.
+expressions will now generate, if enabled, a deprecated warning message.
+The properties are: Other_Alphabetic, Other_Default_Ignorable_Code_Point,
+Other_Grapheme_Extend, Other_ID_Continue, Other_ID_Start, Other_Lowercase,
+Other_Math, and Other_Uppercase.
 
 An installation can now fairly easily change which Unicode properties
 Perl understands.  As mentioned above, certain properties are by default
@@ -141,45 +154,55 @@ turned off.  These include all the Unihan properties (which should be
 accessible via the CPAN module Unicode::Unihan) and any deprecated or
 Unicode internal-only property that Perl has never exposed.
 
-The files in the To directory are now more clearly marked as being
-stable, directly usable by applications.  New hash entries in them give
-the format of the normal entries which allows for easier machine
-parsing.  Perl can generate files in this directory for any property,
-though most are suppressed.  An installation can choose to change which
-get written.   Instructions are in L<perluniprops>.
+The generated files in the C<lib/unicore/To> directory are now more
+clearly marked as being stable, directly usable by applications.
+New hash entries in them give the format of the normal entries,
+which allows for easier machine parsing.  Perl can generate files
+in this directory for any property, though most are suppressed.  An
+installation can choose to change which get written.  Instructions
+are in L<perluniprops>.
 
-=head1 New Platforms
+=head2 Regular Expressions
 
-XXX List any platforms that this version of perl compiles on, that previous
-versions did not. These will either be enabled by new files in the F<hints/>
-directories, or new subdirectories and F<README> files at the top level of the
-source tree.
+U+0FFFF is now a legal character in regular expressions.
 
 =head1 Modules and Pragmata
 
-XXX All changes to installed files in F<cpan/>, F<dist/>, F<ext/> and F<lib/>
-go here, in a list ordered by distribution name. Minimally it should be the
-module version, but it's more useful to the end user to give a paragraph's
-summary of the module's changes. In an ideal world, dual-life modules would
-have a F<Changes> file that could be cribbed.
-
-=head2 New Modules and Pragmata
+=head2 Pragmata Changes
 
 =over 4
 
-=item C<XXX>
+=item C<constant>
 
-XXX
+Upgraded from version 1.19 to 1.20.
 
-=back
+=item C<diagnostics>
 
-=head2 Pragmata Changes
+This pragma no longer suppresses C<Use of uninitialized value in range (or flip)> warnings. [perl #71204]
 
-=over 4
+=item C<feature>
+
+Upgraded from 1.13 to 1.14.  Added the C<unicode_strings> feature:
+
+    use feature "unicode_strings";
+
+This pragma turns on Unicode semantics for the case-changing operations
+(uc/lc/ucfirst/lcfirst) on strings that don't have the internal UTF-8 flag set,
+but that contain single-byte characters between 128 and 255.
+
+=item C<legacy>
+
+The experimental C<legacy> pragma, introduced in 5.11.2, has been removed,
+and its functionality replaced by the new feature pragma, C<use feature
+"unicode_strings">.
 
-=item C<XXX>
+=item C<threads>
 
-XXX
+Upgraded from version 1.74 to 1.75.
+
+=item C<warnings>
+
+Upgraded from 1.07 to 1.08.  Added new C<warnings::fatal_enabled()> function.
 
 =back
 
@@ -187,970 +210,353 @@ XXX
 
 =over 4
 
-=item C<XXX>
+=item C<Archive::Extract>
 
-XXX
+Upgraded from version 0.34 to 0.36.
 
-=back
+=item C<CPAN>
 
-=head1 Utility Changes
+Upgraded from version 1.94_51 to 1.94_5301, which is 1.94_53 on CPAN 
+plus some local fixes for bleadperl.
 
-XXX Changes to installed programs such as F<perlbug> and F<xsubpp> go
-here. Most of these are built within the directories F<utils> and F<x2p>.
+Includes better bzip2 support, improved FirstTime experience with
+auto-selection of CPAN mirrors, proper handling of modules removed from the
+Perl core, and an updated 'cpan' utility script
 
-=over 4
+=item C<CPANPLUS>
 
-=item F<XXX>
+Upgraded from version 0.89_09 to 0.90.
 
-XXX
+=item C<Encode>
 
-=back
+Upgraded from version 2.38 to 2.39.
 
-=head1 New Documentation
+=item C<ExtUtils::MakeMaker>
 
-XXX Changes which create B<new> files in F<pod/> go here.
+Upgraded from version 6.55_02 to 6.56.  Adds new BUILD_REQUIRES key to
+indicate build-only prerequisites.  Also adds support for
+mingw64 and the new "package NAME VERSION" syntax.
 
-=over 4
+=item C<File::Path>
 
-=item L<XXX>
+Upgraded from version 2.08 to 2.08_01.
 
-XXX
+=item C<Module::Build>
 
-=back
+Upgraded from version 0.35_09 to 0.36.  Compared to 0.35, this version has a
+new 'installdeps' action, supports the PERL_MB_OPT environment variable, adds a
+'share_dir' property for L<File::ShareDir> support, support the "package NAME
+VERSION" syntax and has many other enhancements and bug fixes.  The
+'passthrough' style of Module::Build::Compat has been deprecated.
 
-=head1 Changes to Existing Documentation
+=item C<Module::CoreList>
+
+Upgraded from version 2.23 to 2.24.
 
-XXX Changes which significantly change existing files in F<pod/> go here.
-Any changes to F<pod/perldiag.pod> should go in L</New or Changed Diagnostics>.
+=item C<POSIX>
 
+Upgraded from version 1.18 to 1.19. Error codes for C<getaddrinfo()> and C<getnameinfo()> are now
+available.
 
-=head1 Performance Enhancements
+=item C<Pod::Simple>
 
-XXX Changes which enhance performance without changing behaviour go here. There
-may well be none in a stable release.
+Upgraded from version 3.10 to 3.13.
+
+=item C<Safe>
+
+Upgraded from version 2.19 to 2.20.
+
+=back
+
+=head1 Utility Changes
 
 =over 4
 
-=item *
+=item F<perlbug>
 
-XXX
+No longer reports "Message sent" when it hasn't actually sent the message
 
 =back
 
-=head1 Installation and Configuration Improvements
+=head1 Changes to Existing Documentation
 
-XXX Changes to F<Configure>, F<installperl>, F<installman>, and analogous tools
-go here.
+The Pod specification (L<perlpodspec>) has been updated to bring the
+specification in line with modern usage already supported by most Pod systems.
+A parameter string may now follow the format name in a "begin/end" region.
+Links to URIs with a text description are now allowed.  The usage of
+C<LE<lt>"section"E<gt>> has been marked as deprecated.
 
-=head2 Configuration improvements
+L<if.pm|if> has been documented in L<perlfunc/use> as a means to get
+conditional loading of modules despite the implicit BEGIN block around C<use>.
 
-XXX
 
-=head2 Compilation improvements
 
-XXX
+=head1 Installation and Configuration Improvements
 
-=head2 Platform Specific Changes
+=head2 Testing improvements
 
 =over 4
 
-=item XXX-some-platform
-
-XXX
+=item It's now possible to override C<PERL5OPT> and friends in F<t/TEST>
 
 =back
 
-=head1 Selected Bug Fixes
+=head2 Platform Specific Changes
+
+=over 4
 
-XXX Important bug fixes in the core language are summarised here.
-Bug fixes in files in F<ext/> and F<lib/> are best summarised in
-L</Modules and Pragmata>.
+=item Win32
 
 =over 4
 
 =item *
 
-XXX
+Always add a manifest resource to C<perl.exe> to specify the <trustInfo>
+settings for Windows Vista and later.  Without this setting Windows
+will treat C<perl.exe> as a legacy application and apply various
+heuristics like redirecting access to protected file system areas
+(like the "Program Files" folder) to the users "VirtualStore"
+instead of generating a proper "permission denied" error.
+
+For VC8 and VC9 this manifest setting is automatically generated by
+the compiler/linker (together with the binding information for their
+respective runtime libraries); for all other compilers we need to
+embed the manifest resource explicitly in the external resource file.
+
+This change also requests the Microsoft Common-Controls version 6.0
+(themed controls introduced in Windows XP) via the dependency list
+in the assembly manifest.  For VC8 and VC9 this is specified using the
+C</manifestdependency> linker commandline option instead.
 
 =back
 
-=head1 New or Changed Diagnostics
+=item cygwin
+
+=over 4
 
-XXX New or changed warnings emitted by the core's C<C> code go here.
+=item Enable IPv6 support on cygwin 1.7 and newer
+
+=back
+
+=item OpenVMS
 
 =over 4
 
-=item C<XXX>
+=item Make -UDEBUGGING the default on VMS for 5.12.0.
 
-XXX
+Like it has been everywhere else for ages and ages.  Also make
+command-line selection of -UDEBUGGING and -DDEBUGGING work in
+configure.com; before the only way to turn it off was by saying
+no in answer to the interactive question.
 
 =back
 
-=head1 Changed Internals
+=back
 
-XXX Changes which affect the interface available to C<XS> code go here.
+=head1 Selected Bug Fixes
 
 =over 4
 
 =item *
 
-XXX
+Ensure that pp_qr returns a new regexp SV each time. Resolves RT #69852.
 
-=back
+Instead of returning a(nother) reference to the (pre-compiled) regexp in the
+optree, use reg_temp_copy() to create a copy of it, and return a reference to
+that. This resolves issues about Regexp::DESTROY not being called in a timely
+fashion (the original bug tracked by RT #69852), as well as bugs related to
+blessing regexps, and of assigning to regexps, as described in correspondence
+added to the ticket.
 
-=head1 New Tests
+It transpires that we also need to undo the SvPVX() sharing when ithreads
+cloning a Regexp SV, because mother_re is set to NULL, instead of a cloned
+copy of the mother_re. This change might fix bugs with regexps and threads in
+certain other situations, but as yet neither tests nor bug reports have
+indicated any problems, so it might not actually be an edge case that it's
+possible to reach.
 
-XXX Changes which create B<new> files in F<t/> go here. Changes to
-existing files in F<t/> aren't worth summarising, although the bugs that
-they represent may be.
+=item  *
 
-=over 4
+Several compilation errors and segfaults when perl was built with C<-Dmad> were fixed.
 
-=item F<XXX>
+=item *
 
-XXX
+Fixes for lexer API changes in 5.11.2 which broke NYTProf's savesrc option.
 
-=back
+=item *
 
-=head1 Known Problems
+F<-t> should only return TRUE for file handles connected to a TTY
 
-XXX Descriptions of platform agnostic bugs we know we can't fix go here. Any
-tests that had to be C<TODO>ed for the release would be noted here, unless
-they were specific to a particular platform (see below).
+The Microsoft C version of isatty() returns TRUE for all
+character mode devices, including the /dev/null style "nul"
+device and printers like "lpt1".
 
-This is a list of some significant unfixed bugs, which are regressions
-from either 5.11.3 or 5.11.3.
+=item *
 
-=over 4
+Fixed a regression caused by commit fafafbaf which caused a panic during parameter passing [perl #70171]
 
-=item *
 
-XXX
+=item *
 
-=back
+On systems which in-place edits without backup files, -i'*' now works as the documentation says it does [perl #70802]
 
-=head1 Deprecations
+=item *
 
-XXX Add any new known deprecations here.
+Saving and restoring magic flags no longer loses readonly flag.
 
-The following items are now deprecated.
+=item *
 
-=over 4
+The malformed syntax C<grep EXPR LIST> (note the missing comma) no longer
+causes abrupt and total failure.
 
-=item Use of "goto" to jump into a construct is deprecated
+=item *
 
-Using C<goto> to jump from an outer scope into an inner
-scope is now deprecated. This rare use case was causing
-problems in the implementation of scopes.
+Regular expressions compiled with C<qr{}> literals properly set C<$'> when
+matching again.
 
-=back
+=item *
 
-=head1 Platform Specific Notes
+Using named subroutines with C<sort> should no longer lead to bus errors [perl
+#71076]
 
-XXX Any changes specific to a particular platform. VMS and Win32 are the usual
-stars here. It's probably best to group changes under the same section layout
-as the main perldelta
+=item *
 
-=head1 Obituary
+Numerous bugfixes catch small issues caused by the recently-added Lexer API.
 
-XXX If any significant core contributor has died, we've added a short obituary
-here.
+=item *
 
-=head1 Acknowledgements
+Smart match against C<@_> sometimes gave false negatives negatives. [perl #71078]
 
-XXX The list of people to thank goes here.
+=item *
 
+C<$@> may now be assigned a read-only value (without error or busting the stack).
 
-=head1 Reporting Bugs
+=item *
 
-If you find what you think is a bug, you might check the articles
-recently posted to the comp.lang.perl.misc newsgroup and the perl
-bug database at http://rt.perl.org/perlbug/ .  There may also be
-information at http://www.perl.org/ , the Perl Home Page.
+C<sort> called recursively from within an active comparison subroutine no longer causes a bus error if run multiple times. [perl #71076]
 
-If you believe you have an unreported bug, please run the B<perlbug>
-program included with your release.  Be sure to trim your bug down
-to a tiny but sufficient test case.  Your bug report, along with the
-output of C<perl -V>, will be sent off to perlbug@perl.org to be
-analysed by the Perl porting team.
+=back
 
-If the bug you are reporting has security implications, which make it
-inappropriate to send to a publicly archived mailing list, then please send
-it to perl5-security-report@perl.org. This points to a closed subscription
-unarchived mailing list, which includes all the core committers, who be able
-to help assess the impact of issues, figure out a resolution, and help
-co-ordinate the release of patches to mitigate or fix the problem across all
-platforms on which Perl is supported. Please only use this address for
-security issues in the Perl core, not for modules independently
-distributed on CPAN.
+=head1 New or Changed Diagnostics
 
-=head1 SEE ALSO
+=over 4
 
-The F<Changes> file for an explanation of how to view exhaustive details
-on what changed.
+=item *
 
-The F<INSTALL> file for how to build Perl.
+C<split> now warns when called in void context
 
-The F<README> file for general stuff.
 
-The F<Artistic> and F<Copying> files for copyright information.
+=item *
 
-=cut
+C<printf>-style functions called with too few arguments will now issue the warning C<"Missing argument in %s"> [perl #71000] 
 
 
+=back
 
+=head1 New Tests
 
-All changes through commit b4178430270dbe109e7609d0b50d6d54bf9e95d8
-One "triage" pass done.
-
-A second triage pass is still needed to remove unimportant changes
-
-commit f13b7ac8b084674447e000c42d094f46b04c5dd7
-
-    manicheck's complaints about missing files are now closer to the form
-    you might want to paste into a MANIFEST
-
-commit 0e38ac7805aa91d94a5718273a06c051670207ca
-Author: Gerard Goossen <gerard@ggoossen.net>
-Date:   Fri Dec 18 18:41:00 2009 +0100
-    
-    When discarding a token free the op associated with it.
-    
-    Fixes memory leak in comp/parser.t
-    
-    Gerard Goossen
-    
-    From 7694ec023ec8856f34964b5eeea58f1b588c89bc Mon Sep 17 00:00:00 2001
-    From: Gerard Goossen <gerard@ggoossen.net>
-    Date: Fri, 18 Dec 2009 18:32:11 +0100
-    Subject: [PATCH 4/4] When discarding a token free the op associated with it.
-    Status: O
-    Content-Length: 438
-    Lines: 20
-    
-    Bring up ExtUtils::MakeMaker to 6.56 - no functional changes from 6.55_03
+Many modules updated from CPAN incorporate new tests.
 
-    Import CPAN.pm 1.94_53 from CPAN
+=over 4
 
-commit 587808146dcf7a2a909b351c4c32085e6fcb74dc
-Author: Gerard Goossen <gerard@ggoossen.net>
-Date:   Fri Dec 18 15:11:25 2009 +0100
-    
-    Free the PL_scopestack_name
-    
-    Gerard Goossen
-    
-
-commit 9307c420fad2f6f5bd314f9ed66dd53288703e09
-Author: Jan Dubois <jand@activestate.com>
-Date:   Thu Dec 17 18:28:16 2009 -0800
+=item t/comp/final_line_num.t
 
-    Export PL_curinterp symbol for MULTIPLICITY without USE_ITHREADS
-    
-    This is necessary for XS extensions that define PERL_CORE.  In that
-    situation PERL_GET_CONTEXT will resolve to PL_curinterp, which is
-    normally not exported (extensions call Perl_Gcurinterp_ptr() to get a
-    pointer to PL_curinterp instead). With USE_ITHREADS defined
-    PERL_GET_CONTEXT will expand to Perl_get_context() even inside the
-    core because the context needs to be fetched from threadlocal storage.
+See if line numbers are correct at EOF
 
-commit 8703a9a4fd75723318bc4ba1afc42a215806f2d1
-Author: Max Maischein <corion@corion.net>
-Date:   Thu Dec 17 23:22:39 2009 +0100
+=item t/comp/form_scope.t
 
-    Correct some #ifdef USE_ITHREADS / USE_MULTI 
+See if format scoping works
 
-commit 229c5935ba2b931e7f367cc5b2706adeee57ee47
-Author: David Golden <dagolden@cpan.org>
-Date:   Thu Dec 17 17:59:27 2009 -0500
+=item t/comp/line_debug.t
 
-    Updated Module::Build to 0.35_15
-    
-commit feb517daa146d8e378d6d18de1ce5d7dc752383d
-Author: Chris Williams <chris@bingosnet.co.uk>
-Date:   Thu Dec 17 22:08:48 2009 +0000
+See if @{"_<$file"} works
 
-    Updated CPANPLUS to cpan release 0.90
-    
-Author: Jan Dubois <jand@activestate.com>
-Date:   Wed Dec 16 15:42:19 2009 -0800
-
-    -t should only return TRUE for file handles connected to a TTY
-    
-    The Microsoft C version of isatty() returns TRUE for all
-    character mode devices, including the /dev/null style "nul"
-    device and printers like "lpt1".
-    
-    The included test has only been tested on Windows and Linux;
-    the device names for OS/2 and VMS are just best guesses...
-
-commit ab106183f6f6440236f5be52e2a171a63882946a
-Author: Abigail <abigail@abigail.be>
-Date:   Wed Dec 16 14:01:32 2009 +0100
-
-    Document issues when using named captures in combination with a branch reset pattern (see also #71136)
-
-commit 8c63ea58497f2deb05596f96547d19395545a0ee
-Author: Gerard Goossen <gerard@ggoossen.net>
-Date:   Tue Dec 8 20:41:28 2009 +0100
-
-    Store the PL_compcv instead of the the PL_comppad in parser stack, and make it reference counted. Properly solves [perl #66094]
-
-commit 9d48bc6db099a4f84cb04d1ada69930fb35f8da1
-Author: Jesse Vincent <jesse@bestpractical.com>
-Date:   Tue Dec 15 21:08:40 2009 -0500
-
-    Update File::Copy tests to skip on OpenBSD, as it mounts too many filesystems nosuid.
-    
-commit 2574563ed1cc89a9149d4a253b94199eab5bdf71
-Author: Tim Bunce <Tim.Bunce@pobox.com>
-Date:   Tue Dec 15 23:04:11 2009 +0000
-
-    Allow override of PERL5OPT etc in t/TEST
-
-commit 6a158b577769363e3a34f3dcb7321a0e933d3353
-Author: Rafael Garcia-Suarez <rgs@consttype.org>
-Date:   Wed Dec 16 00:04:34 2009 +0100
-
-    Don't make C<use legacy> die on unknown legacy names
-    
-    So we can use C<use legacy "qubits"> to avoid the new "qubit" behaviour,
-    without worrying about perls that didn't have qubit support at all. :)
-
-commit 421f30ed1e95009450bdc7905bf3433ee806ea4f
-
-    [perl #22977] Bug in format/write
-
-commit 15dc519fb7cb1c4b51fbc196af8ecf273c534ad1
-
-    [perl #68640] Wrong error for undef constant name
-
-commit 1443f10d16f26271d2df9b4bdda55dbe024319c3
-
-    more regex folding tests
+=item t/op/filetest_t.t
 
-commit 0f907b96d618c97cd2e020841a70ae037954a616
+See if -t file test works
 
-    [perl #70171] 5.10.0 -> 5.10.1 Regression in fafafbaf70 (Big slowdown in 5.10 @_ parameter passing)
-    
-    In this case my %x = %$x assigns a hash to itself. This causes the
-    hv_clear in pp_aassign to wipe away the hash before it can be copied.
-    The â\80\98panic: attempt to copy freed scalarâ\80\99 error is triggered by this
-    line, which copies the value:
-        sv_setsv(tmpstr,*relem);        /* value */
-    
-    The solution is to make sure the OPpASSIGN_COMMON flag is on in such
-    cases, so that pp_aassign copies everything before doing the assignment.
+=item t/op/qr.t
 
-commit 2ab54efd6265713df5cd4bd0927024245675c1c2
-Author: Michael Breen <perl@mbreen.com>
+See if qr works
 
-    fix bug 67156: overload: nomethod(..., '!') return value inverted
+=item t/op/utf8cache.t
 
-commit 412147f664b7f5805591ad996d7e5a9e70b3d80f
+Tests malfunctions of utf8 cache
 
-    [perl #71204] diagnostics.pm suppresses 'Use of uninitialized value in range (or flip)' warning
-    
-    (and bump version of diagnostics.pm)
+=item t/re/uniprops.t
 
-commit 2653dd3c22bd18d7877da53d515dc31c46d8fbea
-Author: Reini Urban <rurban@x-ray.at>
-Date:   Mon Dec 14 13:04:37 2009 +0100
+Test unicode \p{} regex constructs
 
-    cygwin IPv6 since 1.7
-    
-    Use g++ as default linker
-    IPv6 support for 1.7
+=back
 
-commit 69dc4b30f4725ad5f212d45d3c856ac1caaacf17
-Author: Father Chrysostomos <sprout@cpan.org>
-Date:   Mon Dec 14 12:19:35 2009 +0100
+=head1 Deprecations
 
-    [perl #70764] $' fails to initialized for pre-compiled regular expression matches
-    
-    The match vars are associated with the regexp that last matched
-    successfully. In the case of $str =~ $qr or /$qr/, since the $qr could
-    be used in multiple scopes that need their own sets of match vars, the
-    $qr is cloned by Perl_reg_temp_copy as of change 30677/28d8d7f. This
-    happens in pp_regcomp before pp_match has stringified the LHS, hence the
-    bug. In short, /$gror/ is not equivalent to
-    ($which = !$which) ? /$gror/ : /$gror/, which is weird.
-    
-Author: Reini Urban <rurban@x-ray.at>
-Date:   Sun Dec 13 08:06:43 2009 +0100
+The following items are now deprecated.
 
-    Eliminate OP_SETSTATE from cop.h header
-    
-    It had been added with change 3728 to track linenumbers in
-    optimized else, disabled by change 4309,
-    and removed with change 33072.
-    
-    Bump copyright, latest change was "Fix MULTICALL in List-Util" 2009-03-07
-    with commit 1bbbfc50
+=over 4
 
-commit 9c7b20a98a1d5faa39d9d097a77c2bf4a0a19daa
-Author: Jesse Vincent <jesse@bestpractical.com>
-Date:   Thu Dec 10 13:14:24 2009 -0500
+=item Use of "goto" to jump into a construct is deprecated
 
-    Update Cwd / PathTools to 3.31 to get us a non-devel version number based on a chat with Steffen. No code changes.
+Using C<goto> to jump from an outer scope into an inner
+scope is now deprecated. This rare use case was causing
+problems in the implementation of scopes.
 
-commit a242eeb4c06c63af5ec7e01d5602b14bde94aa81
-Author: Jesse Vincent <jesse@bestpractical.com>
-Date:   Thu Dec 10 11:44:26 2009 -0500
+=back
 
-    Updated to Pod::Simple 3.11 from CPAN [perl #71004]
+=head1 Acknowledgements
 
-commit f62b3c7e73b3b864bf7c73fdb4e6dff9f9c0f700
-Author: Chris Williams <chris@bingosnet.co.uk>
-Date:   Thu Dec 10 12:16:57 2009 +0000
+Perl 5.11.3 represents approximately one month of development since
+Perl 5.11.2 and contains 61407 lines of changes across 396 files
+from 40 authors and committers:
 
-    Update Archive::Extract to cpan version 0.36
+Abigail, Alex Davies, Alexandr Ciornii, Andrew Rodland, Andy
+Dougherty, Bram, brian d foy, Chip Salzenberg, Chris Williams, Craig
+A. Berry, Daniel Frederick Crisman, David Golden, Dennis Kaarsemaker,
+Eric Brine, Father Chrysostomos, Gene Sullivan, Gerard Goossen, H.
+Merijn Brand, Hugo van der Sanden, Jan Dubois, Jerry D. Hedden,
+Jesse Vincent, Jim Cromie, Karl Williamson, Leon Brocard, Max
+Maischein, Michael Breen, Moritz Lenz, Nicholas Clark, Rafael
+Garcia-Suarez, Reini Urban, Ricardo Signes, Stepan Kasal, Steve
+Hay, Steve Peters, Tim Bunce, Tony Cook, Vincent Pit and Zefram.
 
-commit 0aa6d4a524fe5cbd48c99d293e1d8b643ab0387a
-Author: Reini Urban <rurban@x-ray.at>
-Date:   Wed Dec 9 17:45:44 2009 -0500
+Many of the changes included in this version originated in the CPAN
+modules included in Perl's core. We're grateful to the entire CPAN
+community for helping Perl to flourish.
 
-    Updated docpointer for illguts
+=head1 Reporting Bugs
 
-commit 85613cabfd8d8a9b6b36082819bd6c38e1bb21c7
-Author: Zefram <zefram@fysh.org>
-Date:   Wed Dec 9 17:40:05 2009 -0500
+If you find what you think is a bug, you might check the articles
+recently posted to the comp.lang.perl.misc newsgroup and the perl
+bug database at http://rt.perl.org/perlbug/ .  There may also be
+information at http://www.perl.org/ , the Perl Home Page.
 
-    Fix for [perl #70910] wrong line number in syntax error message
+If you believe you have an unreported bug, please run the B<perlbug>
+program included with your release.  Be sure to trim your bug down
+to a tiny but sufficient test case.  Your bug report, along with the
+output of C<perl -V>, will be sent off to perlbug@perl.org to be
+analysed by the Perl porting team.
 
-commit ecf5c238cfc27e32b6ca4c6d91b92bf8852e36b2
-Author: Andy Dougherty <doughera@lafayette.edu>
-Date:   Tue Dec 8 11:36:54 2009 -0500
+If the bug you are reporting has security implications, which make it
+inappropriate to send to a publicly archived mailing list, then please send
+it to perl5-security-report@perl.org. This points to a closed subscription
+unarchived mailing list, which includes all the core committers, who be able
+to help assess the impact of issues, figure out a resolution, and help
+co-ordinate the release of patches to mitigate or fix the problem across all
+platforms on which Perl is supported. Please only use this address for
+security issues in the Perl core, not for modules independently
+distributed on CPAN.
 
-    Document config_args limitations reported in [perl #70912]
+=head1 SEE ALSO
 
-commit f6435df36c4167f97876032948ee21a446b75f27
-Author: Gerard Goossen <gerard@ggoossen.net>
-Date:   Tue Dec 8 12:42:58 2009 +0100
+The F<Changes> file for an explanation of how to view exhaustive details
+on what changed.
 
-    proper error on "grep $x (1,2,3)". Solves [perl #37314]
+The F<INSTALL> file for how to build Perl.
 
-commit 13290fcd82823e130109fca5199c99fb886e29eb
-Author: Tony Cook <tony@develop-help.com>
-Date:   Tue Dec 8 12:48:59 2009 +0100
-
-    [perl #70802] -i'*' refuses to work
-    
-    Add regression tests
-    (the bug was fixed by commit c9930541bfa04399c3b648e83c9b750cee1154fb)
-
-commit 93592fd5aeec89ac25994a493ef54e1d7a572d65
-Author: Ricardo Signes <rjbs@cpan.org>
-Date:   Mon Dec 7 18:24:59 2009 -0500
-
-    legalize =begin foo bar
+The F<README> file for general stuff.
 
-commit b41aadf259cf55858c5ab0386356cdbe2dc49a6b
-Author: Ricardo Signes <rjbs@cpan.org>
-Date:   Mon Dec 7 18:21:44 2009 -0500
-
-    more aggressively deprecate L<section> and L<"section">
-
-commit f6e963e4dd62b8e3c01b31f4a4dd57e47e104997
-Author: Ricardo Signes <rjbs@cpan.org>
-Date:   Mon Dec 7 18:19:28 2009 -0500
-
-    remove prohibition against L<text|href>
-
-commit 1cb985b013ea71b82afbc114ed06f94d451f5e04
-Author: Jan Dubois <jand@activestate.com>
-Date:   Mon Dec 7 17:19:18 2009 -0800
-
-    Throw away uncleanable scopes when exiting a pseudo-forked process.
-    
-    Commit adab9969 tried to clean up those additional scopes, but failed
-    because some of the memory was allocated from a different pool. To
-    avoid triggering the assert() in perl_destruct() this change instead
-    moves the one remaining scope back to the root of the stack, effectively
-    discarding the additional frames without any further processing.
-
-commit 1144115d25e28286dc02b44859da121ea1b93f1c
-commit 8a27a13e89107aaf68c0748b68ee71fbd86d774b
-Author: Father Chrysostomos <sprout@cpan.org>
-Date:   Mon Dec 7 14:58:40 2009 +0100
+The F<Artistic> and F<Copying> files for copyright information.
 
-    [perl #71076] sort with active sub (5.10 regression)
-    
-    One of the tests in sort.t causes a bus error (or sometimes â\80\98Undefined
-    subroutine calledâ\80\99) if run multiple times. This is because sort
-    decreases the refcount of an active sub used as a comparison routine.
-    
-    Ironically enough, this test was added by the very change that broke it
-    (25953/9850bf2).
+=cut
 
-commit 6bc991bfb3c34a5d286a1202fcc0d740d72dcee7
-Author: Rafael Garcia-Suarez <rgs@consttype.org>
-Date:   Mon Dec 7 13:55:49 2009 +0100
 
-    Allocate the right HV
-    
-    This will solve an obscure bug in smart-match involving nested data
-    structures containing the same elements.
-
-commit 69c3dccf5322a59cb855347c04712ba11b65328f
-Author: Rafael Garcia-Suarez <rgs@consttype.org>
-Date:   Mon Dec 7 13:41:05 2009 +0100
-
-    Fix [perl #71078] Smart match against @_ gives false negatives
-    
-    @_ can contain NULLs for undefined elements
-
-commit 7baa46900628573770d962400725b38c0773bf47
-Author: hv@crypt.org <hv@crypt.org>
-Date:   Sun Dec 6 22:24:39 2009 +0100
-
-    [perl #71000] Wrong variable name in warning
-    
-    Add a new warning "Missing argument in %s"
-
-commit f89a570b1f4dda1c19dab17cb7eb6914cdc0717c
-Author: Chip Salzenberg <chip@ci005.sv2.upperbeyond.com>
-Date:   Wed Oct 28 17:08:05 2009 -0700
-
-    avoid infinite chain of utf8 magic
-
-commit 806e7ca7a95b2271bcd698a87bd05a4b9ea9ae68
-Author: Chip Salzenberg <chip@pobox.com>
-Date:   Mon Oct 26 19:39:20 2009 -0700
-
-    when removing magic, fix SvMAGICAL flags (unless save_magic is active)
-
-commit f9c6fee519b868a2e8ef8c5b701c0d3f95565423
-Author: Chip Salzenberg <chip@ci005.sv2.upperbeyond.com>
-Date:   Wed Oct 28 16:41:02 2009 -0700
-
-    preserve readonly flag when saving and restoring magic flags
-
-commit 077f834239e40e0523e428946baaf95eaec43724
-Author: hv@crypt.org <hv@crypt.org>
-Date:   Fri Dec 4 18:50:02 2009 -0600
-
-    t/test.pl fresh_perl_like() bug
-    
-    The existing code does the wrong thing if a string (rather than a compiled
-    regexp) is supplied for $expected. Happily perl will do the right thing
-    if you let it.
-    
-    Hugo
-    
-    Message-Id: <200912041444.nB4EiqBj004436@zen.crypt.org>
-
-commit 517956bf3975a79f7429698dce4510d4616b19a3
-Author: Craig A. Berry <craigberry@mac.com>
-Date:   Fri Dec 4 17:48:27 2009 -0600
-
-    Port lib/unicore/mktables to VMS.
-    
-    This is mostly just making filename comparisons and lookups of filenames
-    in hashes case blind, which is necessary since filename case is not
-    (by default) preserved.
-
-commit a756042476315fbf04b4211a7dfb5783ff6cba2f
-Author: Nicholas Clark <nick@ccl4.org>
-Date:   Fri Dec 4 15:16:04 2009 +0000
-
-    Silence Win32 compiler warning
-    
-    Subject: Re: Smoke [5.11.2] v5.11.2-105-gc2123ae FAIL(F) MSWin32 Win2000 SP4 (x86/1 cpu)
-    Message-ID: <20091204140536.GD2582@plum.flirble.org>
-    
-    (amended to fix the obvious typo)
-
-commit 283b82dc9f704fb99591ed28497a6a263e6ef519
-Author: Karl Williamson <khw@khw-desktop.(none)>
-Date:   Wed Dec 2 21:36:17 2009 -0700
-
-    Unicode 5.2
-
-commit c9930541bfa04399c3b648e83c9b750cee1154fb
-Author: Tony Cook <tony@develop-help.com>
-Date:   Thu Dec 3 10:20:09 2009 +0100
-
-    [perl #70802] -i'*' refuses to work
-
-commit c2123ae380a372d506d1b6938667bd785fd8728b
-Author: Nicholas Clark <nick@ccl4.org>
-Date:   Wed Dec 2 16:01:10 2009 +0000
-
-    Ensure that pp_qr returns a new regexp SV each time. Resolves RT #69852.
-    
-    Instead of returning a(nother) reference to the (pre-compiled) regexp in the
-    optree, use reg_temp_copy() to create a copy of it, and return a reference to
-    that. This resolves issues about Regexp::DESTROY not being called in a timely
-    fashion (the original bug tracked by RT #69852), as well as bugs related to
-    blessing regexps, and of assigning to regexps, as described in correspondence
-    added to the ticket.
-    
-    It transpires that we also need to undo the SvPVX() sharing when ithreads
-    cloning a Regexp SV, because mother_re is set to NULL, instead of a cloned
-    copy of the mother_re. This change might fix bugs with regexps and threads in
-    certain other situations, but as yet neither tests nor bug reports have
-    indicated any problems, so it might not actually be an edge case that it's
-    possible to reach.
-
-commit adab996997d7ef1b54d382f5ab4304f438cd1dd0
-Author: Jan Dubois <jand@activestate.com>
-Date:   Wed Dec 2 01:34:18 2009 -0800
-
-    Cleanup all scopes before exiting a pseudo-forked process.
-    
-    perl_destruct() contains an assertion that the scope stack
-    is empty.  The remaining scopes are due to fork() being
-    called from within a BEGIN block.
-
-commit 781ecc3f4e65a5261736cf5fa8e56b6bea2ff71a
-Author: Jan Dubois <jand@activestate.com>
-Date:   Tue Dec 1 23:11:03 2009 -0800
-
-    Revert commit cbdd5331.
-    
-    Commit a09dc31d1 says:
-    
-        It's possible that someone has built a module with -DDEBUGGING,
-        but they're using it against a perl built non-DEBUGGING, [...]
-    
-    which means that the PL_scopestack_name symbol must always be exported.
-
-commit 0b3da58dfdc350792109691bb6c07a48109b9e12
-Author: Tony Cook <tony@develop-help.com>
-Date:   Tue Dec 1 22:25:39 2009 +1100
-
-    -Dmad: double free or corruption
-    
-    > If your perl has -Dmad, the following program crashes:
-    >
-    > $ bleadperl -we '$x="x" x 257; eval "for $x"'
-    > *** glibc detected *** bleadperl: double free or corruption (!prev): 0x0000000001dca670 ***
-    
-    Change 6136c704 changed S_scan_ident from:
-    
-       e = d + destlen - 3;
-    
-    to:
-    
-       register char * const e = d + destlen + 3;
-    
-    where e is used to mark the end of the buffer, this meant that the
-    various buffer end checks allowed the various buffers supplied
-    S_scan_ident to overflow.
-    
-    Attached is a fix, various tests with fencepost checks on different
-    identifier lengths, and the specific case mentioned in the ticket.
-    
-    Tony
-    
-    Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>
-
-commit 5ca68648d92617d8e0deebbc877c24f91be5ce4d
-Author: Tony Cook <tony@develop-help.com>
-Date:   Tue Dec 1 19:12:30 2009 +1100
-
-    -Dmad broken for c++
-    
-    On Tue, Dec 01, 2009 at 08:22:38AM +0100, H.Merijn Brand wrote:
-    > perly.y: In function 'int Perl_madparse(PerlInterpreter*)':
-    > perly.y:335: error: cast from 'TOKEN*' to 'line_t' loses precision
-    > perly.y:348: error: cast from 'TOKEN*' to 'line_t' loses precision
-    > perly.y:430: error: cast from 'TOKEN*' to 'line_t' loses precision
-    
-    Uses the same mechanism used in if, unless to retrieve an ival set in
-    toke.c
-    
-    Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>
-
-commit 576b33a19ccaf98d4dfe201d529c55c3747f0cb6
-Author: Tim Bunce <Tim.Bunce@pobox.com>
-Date:   Tue Dec 1 00:15:21 2009 +0100
-
-    [rt.cpan.org #51574] Safe.pm sort {} bug accessing $a and $b with -Dusethreads
-
-commit c362798e2bfee6dd58e97b97c7f3aa37c2c6af9f
-Author: Zefram <zefram@fysh.org>
-Date:   Mon Nov 30 11:42:14 2009 +0100
-
-    Document if.pm in perlfunc
-
-commit 71eaafb1e6768e777bc805cc8490b55c6e77da64
-Author: Rafael Garcia-Suarez <rgs@consttype.org>
-Date:   Mon Nov 30 10:30:41 2009 +0100
-
-    Make distclean work again
-
-commit ee6ba15dedda3e88eb66891eaf387c00a4c0a2fb
-Author: Eric Brine <ikegami@adaelis.com>
-Date:   Thu Nov 26 19:16:16 2009 -0500
-
-    Fix -DPERL_NO_UTF16_FILTER
-
-commit 75068674a0c83a71b3705f2c6000b34d849b9640
-Author: Rafael Garcia-Suarez <rgs@consttype.org>
-Date:   Sun Nov 29 23:30:45 2009 +0100
-
-    Make split warn in void context
-
-commit dfd167e94af611f6248e804cb228b35ca4123bd6
-Author: Nicholas Clark <nick@ccl4.org>
-Date:   Sun Nov 29 19:02:05 2009 +0000
-
-    Handle $@ being assigned a read-only value (without error or busting the stack).
-    
-    Discovered whilst investigating RT #70862.
-
-commit f5fa9033b8c1fdcbd7710850b3b0380d6b937853
-Author: Nicholas Clark <nick@ccl4.org>
-Date:   Sun Nov 29 16:42:42 2009 +0000
-
-    Fix RT #70862 by converting ERRSV to GvSVn() to ensure a non-NULL GvSV().
-
-commit ff868e665bf85a829dc47bfa1243b26d4367cacd
-Author: Steve Peters <steve@fisharerojo.org>
-Date:   Sat Nov 28 23:43:11 2009 -0600
-
-    Add error codes for getaddrinfo() and getnameinfo()
-
-commit 23e33b604408d78c7993c7ba35b0a4323eb9feeb
-Author: Karl Williamson <khw@khw-desktop.(none)>
-Date:   Sat Nov 28 12:04:34 2009 -0700
-
-    mktables performance improvement
-    
-    The attached patch got the easiest performance improvements to mktables.
-    Hopefully this is good enough for now.
-    
-    This involved:
-    
-    1) Nicholas' patch
-    2) I stored complete_name instead of recomputing it each time.
-    3) Used $_[xxx] instead of shift in very heavily used subroutines
-    4) removed trace accidentally left in.
-    
-    I also changed the misspelled subroutine name discovered by Craig Berry.
-    I searched for any other misspellings and didn't find any.
-    
-    Also removed trailing white space that keeps creeping back in, and now
-    this doesn't generate pod entries if not outputting a pod file, and
-    clarified warning message if no mktables.lst is present.
-    
-    I couldn't figure out a way to conditionally use 'no overloading', as
-    it is called at compile time.  So I just commented out the old stuff
-    that will work for 5.8, with a note about using that if you want to
-    use 5.8
-
-commit 408633379a1452b4e14d7c3b5e80f7dc05ea7986
-Author: Moritz Lenz <moritz@faui2k3.org>
-Date:   Fri Nov 27 00:33:09 2009 +0100
-
-    Document backreferences to groups that did not match
-    
-    Also add a test for that, fill in test description, and sneak in a vim
-    modeline for re_tests
-
-commit e90b02b98382872bd43097b9b146a9b00ca3171b
-Author: Tim Bunce (via RT) <perlbug-followup@perl.org>
-Date:   Wed Nov 25 03:02:24 2009 -0800
-
-    perlbug reports "Message sent" even when it hasn't
-    
-    perlbug doesn't check the return status of Mail::Send and so reports
-    "Message sent" even if it hasn't:
-
-commit 17cc9359ea8ee1b546aa067b91362160e3c1e1ee
-Author: Zefram <zefram@fysh.org>
-Date:   Wed Nov 25 22:17:52 2009 +0000
-
-    perl-5.11.2 breaks NYTProf savesrc option (Lexer API suspected)
-    
-    Tim Bunce wrote:
-    >The primary issue is the off-by-one error in the array indexing.
-    
-    There's a bit more to it than that.  The indexing was off-by-one for
-    *some* places that process a new line, but correct for others, so the
-    saved source as a whole was mangled rather than simply offset.  Also,
-    there were some redundant calls to update_debugger_info(), so some lines
-    got saved twice, in some cases off-by-one for one saving and not for
-    the other.  The saved source is, therefore, hopelessly broken in 5.11.2.
-    
-    Attached patch fixes the source saving.  Includes a new test, which works
-    through all reachable places that source lines get saved.  This should
-    close RT #70804.
-    
-    -zefram
-
-commit f706d24c20941a6401e90643488acaa0705ba877
-Author: Gerard Goossen <gerard@ggoossen.net>
-Date:   Tue Nov 24 12:13:13 2009 +0100
-
-    add interpolation test for [perl #70091]
-    
-commit ae28bb2a75e3c50332b2684a214bf3dcd1bdb937
-Author: Gerard Goossen <gerard@ggoossen.net>
-Date:   Tue Nov 24 12:06:55 2009 +0100
-
-    Also skip spaces after variable if we are within lexical brackets. Fixes #70091: Segmentation fault in hash lookup in regex substitution
-
-commit ec983580254c32fd44889fde43973ac5dd74257b
-Author: Andrew Rodland <andrew@hbslabs.com>
-Date:   Sat Nov 14 01:26:09 2009 -0600
-
-    Add code and starting perldoc for warnings::fatal_enabled.
-    
-    This is an analog for warnings::enabled, except it tests whether the
-    given category has been set fatal using "use warnings FATAL => foo".
-    This is mostly for symmetry.
-    
-    Assumes that the fatal bit for a category will have an offset one higher
-    than the regular bit for the category, because otherwise much rewriting
-    of __chk would be required.
-
-commit 6b1226db4432ba7f08619ebe4c5365f692dcbbf7
-Author: Steve Hay <SteveHay@planit.com>
-Date:   Tue Nov 24 11:02:58 2009 +0000
-
-    Add missing library to VC++ section of Win32 dmake makefile
-
-commit 5e8632492467a144fabe819ac1f4206ecde8d14d
-Author: Steve Hay <SteveHay@planit.com>
-Date:   Tue Nov 24 10:51:54 2009 +0000
-
-    Avoid circularity in $(LINK_FLAGS) definition in Win32 dmake makefile
-
-commit 524ce141dcd46f87e73a300e1436937336261b19
-Author: Rafael Garcia-Suarez <rgs@consttype.org>
-Date:   Tue Nov 24 09:47:46 2009 +0100
-
-    Remove generated file pod/perluniprops.pod from the source distribution
-
-commit f86864acbf97469fd9e5d5233d51ff743f4d8d6e
-Author: Karl Williamson <khw@khw-desktop.(none)>
-Date:   Mon Nov 23 16:26:16 2009 -0700
-
-    mktables not run unless needed
-
-commit aadc0e04984c523115970b0a0c0ba40ddcee3d41
-Author: brian d foy <bdfoy@cpan.org>
-Date:   Mon Nov 23 18:53:39 2009 -0600
-
-    * Convert some pod files to UTF-8 (like all of the other pod files)
-
-commit dbb3120a48c1483138e02a3fadf359e5b664ae11
-Author: Steve Hay <SteveHay@planit.com>
-Date:   Mon Nov 23 23:04:41 2009 +0000
-
-    Fix code-before-declaration error on Win32 with recent VC++ compilers
-    
-    (We only #define SET_INVALID_PARAMETER_HANDLER for VC2005 and later, so
-    users of earlier compilers will not have seen this error)
-
-commit 24855dffdf07c139d331fbdd811a1a8299756ee0
-Author: Jerry D. Hedden <jdhedden@cpan.org>
-Date:   Mon Nov 23 10:34:04 2009 -0500
-
-    Upgrade to threads 1.75
-
-commit a9ed9b74fd79d60cccbe784b8d7b2eae94ded913
-Author: Jesse Vincent <jesse@bestpractical.com>
-Date:   Mon Nov 23 09:38:10 2009 -0500
-
-    Added a perltodo about enabling/disabling individual warnings
-
-commit 61fc5122f0d8a509834282b8ecb3252d2e4c9f5d
-Author: Karl Williamson <khw@khw-desktop.(none)>
-Date:   Fri Nov 20 11:02:01 2009 -0700
-
-    Make unicode semantics the default
-
-    *****************
-
-commit b500e03bf95eb884a53407409b4e755d303171a4
-Author: Gerard Goossen <gerard@ggoossen.net>
-Date:   Sat Nov 21 12:16:07 2009 +0100
-
-    deprecate "goto" to jump into a construct
-
-commit 021f53de09926928546378b3552f9240c9241dde
-Author: Gerard Goossen <gerard@ggoossen.net>
-Date:   Mon Nov 16 13:58:24 2009 +0100
-
-    Force OP_REQUIRE to scalar context at the end of ck_require and don't let it become void context. Fixes problem with require not always being in scalar context.
-
-commit 6a0e50422a84b53e998825128c56791913cd03aa
-Author: Craig A. Berry <craigberry@mac.com>
-Date:   Sat Nov 21 11:17:38 2009 -0600
-
-    Make -UDEBUGGING the default on VMS for 5.12.0.
-    
-    Like it has been everywhere else for ages and ages.  Also make
-    command-line selection of -UDEBUGGING and -DDEBUGGING work in
-    configure.com; before the only way to turn it off was by saying
-    no in answer to the interactive question.
-
-commit c35076938c7236fb2aaabecd40e3a5a444c3be77
-Author: Craig A. Berry <craigberry@mac.com>
-Date:   Sat Nov 21 11:13:01 2009 -0600
-
-    Perl_pad_sv and Perl_hv_assert don't exist without -DDEBUGGING.
-    
-    So let's not make them part of the API when they don't exist.
-
-commit 4ebea3c679ca93eb90d62be76bf8eb3cd7d14160
-Author: Jan Dubois <jand@activestate.com>
-Date:   Thu Apr 30 16:53:20 2009 -0700
-
-    Always add a manifest resource to perl.exe to specify the <trustInfo>
-    settings for Windows Vista and later.  Without this setting Windows
-    will treat perl.exe as a legacy application and apply various
-    heuristics like redirecting access to protected file system areas
-    (like the "Program Files" folder) to the users "VirtualStore"
-    instead of generating a proper "permission denied" error.
-    
-    For VC8 and VC9 this manifest setting is automatically generated by
-    the compiler/linker (together with the binding information for their
-    respective runtime libraries); for all other compilers we need to
-    embed the manifest resource explicitly in the external resource file.
-    
-    This change also requests the Microsoft Common-Controls version 6.0
-    (themed controls introduced in Windows XP) via the dependency list
-    in the assembly manifest.  For VC8 and VC9 this is specified using the
-    /manifestdependency linker commandline option instead.
-
-commit 51393fc07355ffd0a4b6b212fd676ee37de23e09
-Author: Abigail <abigail@abigail.be>
-Date:   Fri Nov 20 18:58:34 2009 +0100
-
-    File::Find was not resolving paths of the form "/..////../" correctly.
-    Fixed by adding a quantifier to the substitution parameter in
-    contract_name().
-
-commit 31c9a3ace4f559b79a21319b8903e92f53b44868
-Author: Nicholas Clark <nick@ccl4.org>
-Date:   Fri Nov 20 10:23:54 2009 +0000
-
-    Always bless filehandles into IO::Handle:: - don't try for FileHandle:: first.
-    
-    Given that FileHandle "is now a front-end to the IO::* classes" it seems
-    wasted effort to indirect through it.
-
-
-commit 40ea6f68f5e33895a1a9d11f269b177eb901c03f
-Author: brian d foy <bdfoy@cpan.org>
-Date:   Thu Nov 19 18:38:30 2009 -0600
-
-    * Note that unlink sets $! on failure.
-    
-    The docs to unlink didn't explicitly note that it set $! on
-    failure, unlike the docs on some other system calls do.
-    
-    While I was in there, I cleansed the entry a little and
-    added an example of unlinking files one-by-one to find
-    the ones that fail.
-    
-    Modern Perl fix: let's call a glob a glob() and not a <*>.
-    
-    This problem was noted on the Perl Beginner's list:
-    
-    http://www.nntp.perl.org/group/perl.beginners/2009/11/msg110062.html