In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/262514fd94937b2626a85fe69718d557de10d6c9?hp=01f745b3eb247529647341c2612111acf559cf25>

- Log -----------------------------------------------------------------
commit 262514fd94937b2626a85fe69718d557de10d6c9
Author: Stevan Little <ste...@cpan.org>
Date:   Tue Sep 20 22:25:11 2016 +0200

    new perldelta

M       MANIFEST
M       Makefile.SH
M       pod/.gitignore
M       pod/perl.pod
A       pod/perl5255delta.pod
M       pod/perldelta.pod
M       vms/descrip_mms.template
M       win32/GNUmakefile
M       win32/Makefile
M       win32/makefile.mk
M       win32/pod.mak

commit d914b78db5cef310a7545775f838a46436b7c8c1
Author: Stevan Little <ste...@cpan.org>
Date:   Tue Sep 20 22:24:16 2016 +0200

    known pod issues

M       t/porting/known_pod_issues.dat

commit 54d48584ae0d6ecf9528f5178d29387eff710494
Author: Stevan Little <ste...@cpan.org>
Date:   Tue Sep 20 22:05:42 2016 +0200

    ticking the release

M       Porting/release_schedule.pod

commit bd1448f78f8c2acb4ce335cd4d626a4b879a3c73
Author: Stevan Little <ste...@cpan.org>
Date:   Tue Sep 20 21:59:20 2016 +0200

    update epigraphs.pod

M       Porting/epigraphs.pod
-----------------------------------------------------------------------

Summary of changes:
 MANIFEST                                 |   1 +
 Makefile.SH                              |   8 +-
 Porting/epigraphs.pod                    |  13 ++
 Porting/release_schedule.pod             |   2 +-
 pod/.gitignore                           |   2 +-
 pod/perl.pod                             |   1 +
 pod/{perldelta.pod => perl5255delta.pod} |   4 +-
 pod/perldelta.pod                        | 379 +++++++++++++++++++------------
 t/porting/known_pod_issues.dat           |   2 +-
 vms/descrip_mms.template                 |   2 +-
 win32/GNUmakefile                        |   4 +-
 win32/Makefile                           |   4 +-
 win32/makefile.mk                        |   4 +-
 win32/pod.mak                            |   4 +
 14 files changed, 266 insertions(+), 164 deletions(-)
 copy pod/{perldelta.pod => perl5255delta.pod} (98%)

diff --git a/MANIFEST b/MANIFEST
index f37157f..7dbb1a3 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -4830,6 +4830,7 @@ pod/perl5251delta.pod             Perl changes in version 
5.25.1
 pod/perl5252delta.pod          Perl changes in version 5.25.2
 pod/perl5253delta.pod          Perl changes in version 5.25.3
 pod/perl5254delta.pod          Perl changes in version 5.25.4
+pod/perl5255delta.pod          Perl changes in version 5.25.5
 pod/perl561delta.pod           Perl changes in version 5.6.1
 pod/perl56delta.pod            Perl changes in version 5.6
 pod/perl581delta.pod           Perl changes in version 5.8.1
diff --git a/Makefile.SH b/Makefile.SH
index 42beb81..511d6e3 100755
--- a/Makefile.SH
+++ b/Makefile.SH
@@ -522,7 +522,7 @@ miniperl_objs = $(miniperl_objs_nodt) $(DTRACE_MINI_O)
 perllib_objs  = $(perllib_objs_nodt) $(DTRACE_PERLLIB_O)
 perlmain_objs = perlmain$(OBJ_EXT) $(DTRACE_MAIN_O)
 
-perltoc_pod_prereqs = extra.pods pod/perl5255delta.pod pod/perlapi.pod 
pod/perlintern.pod pod/perlmodlib.pod pod/perluniprops.pod
+perltoc_pod_prereqs = extra.pods pod/perl5256delta.pod pod/perlapi.pod 
pod/perlintern.pod pod/perlmodlib.pod pod/perluniprops.pod
 generated_pods = pod/perltoc.pod $(perltoc_pod_prereqs)
 generated_headers = uudmap.h bitcount.h mg_data.h
 
@@ -1085,9 +1085,9 @@ pod/perlintern.pod: $(MINIPERL_EXE) autodoc.pl embed.fnc
 pod/perlmodlib.pod: $(MINIPERL_EXE) pod/perlmodlib.PL MANIFEST
        $(MINIPERL) pod/perlmodlib.PL -q
 
-pod/perl5255delta.pod: pod/perldelta.pod
-       $(RMS) pod/perl5255delta.pod
-       $(LNS) perldelta.pod pod/perl5255delta.pod
+pod/perl5256delta.pod: pod/perldelta.pod
+       $(RMS) pod/perl5256delta.pod
+       $(LNS) perldelta.pod pod/perl5256delta.pod
 
 extra.pods: $(MINIPERL_EXE)
        -@test ! -f extra.pods || rm -f `cat extra.pods`
diff --git a/Porting/epigraphs.pod b/Porting/epigraphs.pod
index b7c7b36..bc442f2 100644
--- a/Porting/epigraphs.pod
+++ b/Porting/epigraphs.pod
@@ -17,6 +17,19 @@ Consult your favorite dictionary for details.
 
 =head1 EPIGRAPHS
 
+=head2 v5.25.5 - Philip K. Dick, VALIS
+
+L<Announced on 2016-09-20 by Stevan 
Little|http://www.nntp.perl.org/group/perl.perl5.porters/2016/09/msg239887.html>
+
+  We hypostatize information into objects. Rearrangement of objects is
+  change in the content of the information; the message has changed.
+  This is a language which we have lost the ability to read. We ourselves
+  are a part of this language; changes in us are changes in the content
+  of the information. We ourselves are information-rich; information
+  enters us, is processed and is then projected outward once more, now
+  in an altered form. We are not aware that we are doing this, that in
+  fact this is all we are doing
+
 =head2 v5.25.4 - Terry Pratchett, "Truckers"
 
 L<Announced on 2016-08-20 by Chris 'BinGOs' 
Williams|http://www.nntp.perl.org/group/perl.perl5.porters/2016/08/msg239191.html>
diff --git a/Porting/release_schedule.pod b/Porting/release_schedule.pod
index ec2bb17..add9e69 100644
--- a/Porting/release_schedule.pod
+++ b/Porting/release_schedule.pod
@@ -53,7 +53,7 @@ you should reset the version numbers to the next blead series.
   2016-06-20  5.25.2 ✓        Matthew Horsfall
   2016-07-20  5.25.3 ✓        Steve Hay
   2016-08-20  5.25.4 ✓        BinGOs
-  2016-09-20  5.25.5          Stevan Little
+  2016-09-20  5.25.5 ✓        Stevan Little
   2016-10-20  5.25.6          Aaron Crane
   2016-11-20  5.25.7          Chad Granum
   2016-12-20  5.25.8          Sawyer X
diff --git a/pod/.gitignore b/pod/.gitignore
index 3c962fc..064e015 100644
--- a/pod/.gitignore
+++ b/pod/.gitignore
@@ -53,7 +53,7 @@
 /roffitall
 
 # generated
-/perl5255delta.pod
+/perl5256delta.pod
 /perlapi.pod
 /perlintern.pod
 *.html
diff --git a/pod/perl.pod b/pod/perl.pod
index 09ee08f..8b82cfa 100644
--- a/pod/perl.pod
+++ b/pod/perl.pod
@@ -180,6 +180,7 @@ aux c2ph h2ph h2xs perlbug pl2pm pod2html pod2man splain 
xsubpp
 
     perlhist           Perl history records
     perldelta          Perl changes since previous version
+    perl5255delta      Perl changes in version 5.25.5
     perl5254delta      Perl changes in version 5.25.4
     perl5253delta      Perl changes in version 5.25.3
     perl5252delta      Perl changes in version 5.25.2
diff --git a/pod/perldelta.pod b/pod/perl5255delta.pod
similarity index 98%
copy from pod/perldelta.pod
copy to pod/perl5255delta.pod
index d4db70d..c6bd8c0 100644
--- a/pod/perldelta.pod
+++ b/pod/perl5255delta.pod
@@ -2,7 +2,7 @@
 
 =head1 NAME
 
-perldelta - what is new for perl v5.25.5
+perl5255delta - what is new for perl v5.25.5
 
 =head1 DESCRIPTION
 
@@ -178,7 +178,7 @@ such circumstances.  [perl #47047]
 
 =item *
 
-A sub containing a "forward" declaration with the same name (e.g.,
+A sub containing with a "forward" declaration with the same name (e.g.,
 C<sub c { sub c; }>) could sometimes crash or loop infinitely.  [perl
 #129090]
 
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index d4db70d..a8ec6a8 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -2,299 +2,382 @@
 
 =head1 NAME
 
-perldelta - what is new for perl v5.25.5
+[ 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.25.6
 
 =head1 DESCRIPTION
 
-This document describes differences between the 5.25.4 release and the 5.25.5
+This document describes differences between the 5.25.5 release and the 5.25.6
 release.
 
-If you are upgrading from an earlier release such as 5.25.3, first read
-L<perl5254delta>, which describes differences between 5.25.3 and 5.25.4.
+If you are upgrading from an earlier release such as 5.25.4, first read
+L<perl5255delta>, which describes differences between 5.25.4 and 5.25.5.
+
+=head1 Notice
+
+XXX Any important notices here
+
+=head1 Core Enhancements
+
+XXX New core language features go here.  Summarize user-visible core language
+enhancements.  Particularly prominent performance optimisations could go
+here, but most should go in the L</Performance Enhancements> section.
+
+[ List each enhancement as a =head2 entry ]
 
 =head1 Security
 
-=head2 "Escaped" colons and relative paths in PATH
+XXX Any security-related notices go here.  In particular, any security
+vulnerabilities closed should be noted here rather than in the
+L</Selected Bug Fixes> section.
 
-On Unix systems, Perl treats any relative paths in the PATH environment
-variable as tainted when starting a new process.  Previously, it was
-allowing a backslash to escape a colon (unlike the OS), consequently
-allowing relative paths to be considered safe if the PATH was set to
-something like C</\:.>.  The check has been fixed to treat C<.> as tainted
-in that example.
+[ List each security issue as a =head2 entry ]
 
-=head1 Modules and Pragmata
+=head1 Incompatible Changes
 
-=head2 Updated Modules and Pragmata
+XXX For a release on a stable branch, this section aspires to be:
+
+    There are no changes intentionally incompatible with 5.XXX.XXX
+    If any exist, they are bugs, and we request that you submit a
+    report.  See L</Reporting Bugs> below.
+
+[ List each incompatible change as a =head2 entry ]
+
+=head1 Deprecations
+
+XXX Any deprecated features, syntax, modules etc. should be listed here.
+
+=head2 Module removals
+
+XXX Remove this section if inapplicable.
+
+The following modules will be removed from the core distribution in a
+future release, and will at that time need to be installed from CPAN.
+Distributions on CPAN which require these modules will need to list them as
+prerequisites.
+
+The core versions of these modules will now issue C<"deprecated">-category
+warnings to alert you to this fact.  To silence these deprecation warnings,
+install the modules in question from CPAN.
+
+Note that these are (with rare exceptions) fine modules that you are encouraged
+to continue to use.  Their disinclusion from core primarily hinges on their
+necessity to bootstrapping a fully functional, CPAN-capable Perl installation,
+not usually on concerns over their design.
+
+=over
+
+=item XXX
+
+XXX Note that deprecated modules should be listed here even if they are listed
+as an updated module in the L</Modules and Pragmata> section.
+
+=back
+
+[ List each other deprecation as a =head2 entry ]
+
+=head1 Performance Enhancements
+
+XXX Changes which enhance performance without changing behaviour go here.
+There may well be none in a stable release.
+
+[ List each enhancement as a =item entry ]
 
 =over 4
 
 =item *
 
-L<Filter::Simple> has been upgraded from version 0.92 to 0.93.
+XXX
 
-It no longer treats C<no MyFilter> immediately following C<use MyFilter> as
-end-of-file.  [perl #107726]
+=back
 
-=item *
+=head1 Modules and Pragmata
 
-L<Locale::Codes> has been upgraded from 3.39 to 3.40.
+XXX All changes to installed files in F<cpan/>, F<dist/>, F<ext/> and F<lib/>
+go here.  If Module::CoreList is updated, generate an initial draft of the
+following sections using F<Porting/corelist-perldelta.pl>.  A paragraph summary
+for important changes should then be added by hand.  In an ideal world,
+dual-life modules would have a F<Changes> file that could be cribbed.
 
-=item *
+[ Within each section, list entries as a =item entry ]
 
-L<Module::CoreList> has been upgraded from version 5.20160820 to 5.20160920.
+=head2 New Modules and Pragmata
+
+=over 4
 
 =item *
 
-L<POSIX> has been upgraded from version 1.71 to 1.72.
+XXX
 
-=item *
+=back
 
-L<Sys::Syslog> has been upgraded from version 0.34_01 to 0.35.
+=head2 Updated Modules and Pragmata
+
+=over 4
 
 =item *
 
-L<Test::Simple> has been upgraded from version 1.302052 to 1.302056.
+L<XXX> has been upgraded from version A.xx to B.yy.
 
-=item *
+=back
 
-L<Thread::Semaphore> has been upgraded from 2.12 to 2.13.
+=head2 Removed Modules and Pragmata
 
-Added the C<down_timed> method.
+=over 4
 
 =item *
 
-L<XSLoader> has been upgraded from version 0.22 to 0.24.
+XXX
 
 =back
 
 =head1 Documentation
 
+XXX Changes to files in F<pod/> go here.  Consider grouping entries by
+file and be sure to link to the appropriate page, e.g. L<perlfunc>.
+
+=head2 New Documentation
+
+XXX Changes which create B<new> files in F<pod/> go here.
+
+=head3 L<XXX>
+
+XXX Description of the purpose of the new file here
+
 =head2 Changes to Existing Documentation
 
-=head3 L<perlinterp>
+XXX Changes which significantly change existing files in F<pod/> go here.
+However, any changes to F<pod/perldiag.pod> should go in the L</Diagnostics>
+section.
+
+=head3 L<XXX>
 
 =over 4
 
 =item *
 
-L<perlinterp> has been expanded to give a more detailed example of how to
-hunt around in the parser for how a given operator is handled.
+XXX Description of the change here
 
 =back
 
-=head1 Testing
+=head1 Diagnostics
+
+The following additions or changes have been made to diagnostic output,
+including warnings and fatal error messages.  For the complete list of
+diagnostic messages, see L<perldiag>.
+
+XXX New or changed warnings emitted by the core's C<C> code go here.  Also
+include any changes in L<perldiag> that reconcile it to the C<C> code.
+
+=head2 New Diagnostics
+
+XXX Newly added diagnostic messages go under here, separated into New Errors
+and New Warnings
+
+=head3 New Errors
 
 =over 4
 
 =item *
 
-F<t/re/regexp_nonull.t> has been added to test that the regular expression
-engine can handle scalars that do not have a null byte just past the end of
-the string.
+XXX L<message|perldiag/"message">
 
 =back
 
-=head1 Platform Support
-
-=head2 Platform-Specific Notes
+=head3 New Warnings
 
 =over 4
 
-=item VMS
+=item *
 
-=over 4
+XXX L<message|perldiag/"message">
 
-=item *
+=back
+
+=head2 Changes to Existing Diagnostics
 
-The path separator for the C<PERL5LIB> and C<PERLLIB> environment entries is
-now a colon (C<:>) when running under a Unix shell. There is no change when
-running under DCL (it's still C<|>).
+XXX Changes (i.e. rewording) of diagnostic messages go here
+
+=over 4
 
 =item *
 
-Remove some VMS-specific hacks from C<showlex.t>. These were added 15 years
-ago, and are no longer necessary for any VMS version now supported.
+XXX Describe change here
 
 =back
 
-=back
+=head1 Utility Changes
 
-=over 4
+XXX Changes to installed programs such as F<perlbug> and F<xsubpp> go here.
+Most of these are built within the directory F<utils>.
 
-=item Win32
+[ List utility changes as a =head2 entry for each utility and =item
+entries for each change
+Use L<XXX> with program names to get proper documentation linking. ]
+
+=head2 L<XXX>
 
 =over 4
 
 =item *
 
-Tweaks for Win32 VC vs GCC detection makefile code. This fixes issue that 
CCHOME
-depends on CCTYPE, which in auto detect mode is set after CCHOME, so CCHOME 
uses
-the uninit CCTYPE var. Also fix else vs .ELSE in makefile.mk
+XXX
 
 =back
 
-=back
+=head1 Configuration and Compilation
 
-=head1 Internal Changes
+XXX Changes to F<Configure>, F<installperl>, F<installman>, and analogous tools
+go here.  Any other changes to the Perl build process should be listed here.
+However, any platform-specific changes should be listed in the
+L</Platform Support> section, instead.
+
+[ List changes as a =item entry ].
 
 =over 4
 
 =item *
 
-Several macros and functions have been added to the public API for
-dealing with Unicode and UTF-8-encoded strings.  See
-L<perlapi/Unicode Support>.
+XXX
 
-=item *
+=back
 
-Use C<my_strlcat()> in C<locale.c>. While C<strcat()> is safe in this context,
-some compilers were optimizing this to C<strcpy()> causing a porting test to
-fail that looks for unsafe code. Rather than fighting this, we just use
-C<my_strlcat()> instead.
+=head1 Testing
 
-=back
+XXX Any significant changes to the testing of a freshly built perl should be
+listed here.  Changes which create B<new> files in F<t/> go here as do any
+large changes to the testing harness (e.g. when parallel testing was added).
+Changes to existing files in F<t/> aren't worth summarizing, although the bugs
+that they represent may be covered elsewhere.
 
-=head1 Selected Bug Fixes
+[ List each test improvement as a =item entry ]
 
 =over 4
 
 =item *
 
-Invalid assignments to a reference constructor (e.g., C<\eval=time>) could
-sometimes crash in addition to giving a syntax error.  [perl #125679]
+XXX
 
-=item *
+=back
 
-The parser could sometimes crash if a bareword came after C<evalbytes>.
-[perl #129196]
+=head1 Platform Support
 
-=item *
+XXX Any changes to platform support should be listed in the sections below.
 
-Autoloading via a method call would warn erroneously ("Use of inherited
-AUTOLOAD for non-method") if there was a stub present in the package into
-which the invocant had been blessed.  The warning is no longer emitted in
-such circumstances.  [perl #47047]
+[ Within the sections, list each platform as a =item entry with specific
+changes as paragraphs below it. ]
 
-=item *
+=head2 New Platforms
 
 A sub containing a "forward" declaration with the same name (e.g.,
 C<sub c { sub c; }>) could sometimes crash or loop infinitely.  [perl
 #129090]
 
-=item *
+=over 4
 
-The use of C<splice> on arrays with nonexistent elements could cause other
-operators to crash.  [perl #129164]
+=item XXX-some-platform
 
-=item *
+XXX
 
-Fixed case where C<re_untuit_start> will overshoot the length of a utf8
-string. [perl #129012]
+=back
 
-=item *
+=head2 Discontinued Platforms
 
-Handle C<CXt_SUBST> better in C<Perl_deb_stack_all>, previously it wasn't
-checking that the I<current> C<cx> is the right type, and instead was always
-checking the base C<cx> (effectively a noop). [perl #129029]
+XXX List any platforms that this version of perl no longer compiles on.
 
-=item *
+=over 4
 
-Fixed two possible use-after-free bugs in C<Perl_yylex>. C<Perl_yylex>
-maintains up to two pointers into the parser buffer, one of which can
-become stale under the right conditions. [perl #129069]
+=item XXX-some-platform
 
-=item *
+XXX
 
-Fixed a crash with C<s///l> where it thought it was dealing with UTF-8
-when it wasn't. [perl #129038]
+=back
 
-=item *
+=head2 Platform-Specific Notes
 
-Fixed place where regex was not setting the syntax error correctly.
-[perl #129122]
+XXX List any changes for specific platforms.  This could include configuration
+and compilation changes or changes in portability/compatibility.  However,
+changes within modules for platforms should generally be listed in the
+L</Modules and Pragmata> section.
 
-=item *
+=over 4
 
-The C<&.> operator (and the C<&> operator, when it treats its arguments as
-strings) were failing to append a trailing null byte if at least one string
-was marked as utf8 internally.  Many code paths (system calls, regexp
-compilation) still expect there to be a null byte in the string buffer
-just past the end of the logical string.  An assertion failure was the
-result.  [perl #129287]
+=item XXX-some-platform
 
-=item *
+XXX
 
-Check C<pack_sockaddr_un()>'s return value because C<pack_sockaddr_un()>
-silently truncates the supplied path if it won't fit into the C<sun_path>
-member of C<sockaddr_un>. This may change in the future, but for now
-check the path in theC<sockaddr> matches the desired path, and skip if
-it doesn't. [perl #128095]
+=back
 
-=item *
+=head1 Internal Changes
 
-Make sure C<PL_oldoldbufptr> is preserved in C<scan_heredoc()>. In some
-cases this is used in building error messages. [perl #128988]
+XXX Changes which affect the interface available to C<XS> code go here.  Other
+significant internal changes for future core maintainers should be noted as
+well.
 
-=item *
+[ List each change as a =item entry ]
 
-Check for null PL_curcop in IN_LC() [perl #129106]
+=over 4
 
 =item *
 
-Fixed the parser error handling for an 'C<:attr(foo>' that does not have
-an ending 'C<)>'.
+XXX
+
+=back
+
+=head1 Selected Bug Fixes
+
+XXX Important bug fixes in the core language are summarized here.  Bug fixes in
+files in F<ext/> and F<lib/> are best summarized in L</Modules and Pragmata>.
+
+[ List each fix as a =item entry ]
+
+=over 4
 
 =item *
 
-Fix C<Perl_delimcpy()> to handle a backslash as last char, this
-actually fixed two bugs, [perl #129064] and [perl #129176].
+XXX
+
+=back
+
+=head1 Known Problems
+
+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.  Unfixed
+platform specific bugs also go here.
+
+[ List each fix as a =item entry ]
+
+=over 4
 
 =item *
 
-[perl #129267] rework gv_fetchmethod_pvn_flags separator parsing to
-prevent possible string overrun with invalid len in gv.c
+XXX
 
 =back
 
-=head1 Obituary
+=head1 Errata From Previous Releases
 
-Jon Portnoy (AVENJ), a prolific Perl author and admired Gentoo community
-member, has passed away on August 10, 2016. He will be remembered and
-missed by all those with which he came in contact and enriched with his
-intellect, wit, and spirit.
+=over 4
 
-=head1 Acknowledgements
+=item *
 
-Perl 5.25.5 represents approximately 4 weeks of development since Perl 5.25.4
-and contains approximately 67,000 lines of changes across 230 files from 25
-authors.
+XXX Add anything here that we forgot to add, or were mistaken about, in
+the perldelta of a previous release.
 
-Excluding auto-generated files, documentation and release tools, there were
-approximately 62,000 lines of changes to 160 .pm, .t, .c and .h files.
+=back
 
-Perl continues to flourish into its third decade thanks to a vibrant community
-of users and developers. The following people are known to have contributed the
-improvements that became Perl 5.25.5:
+=head1 Obituary
 
-Aaron Crane, Aristotle Pagaltzis, Chris 'BinGOs' Williams, Craig A. Berry,
-Dagfinn Ilmari Mannsåker, Dan Collins, Daniel Dragan, Dave Cross, David
-Mitchell, E. Choroba, Father Chrysostomos, James E Keenan, Jerry D. Hedden,
-Karl Williamson, Lukas Mai, Ricardo Signes, Rick Delaney, Sawyer X, Stevan
-Little, Steve Hay, Sullivan Beck, Theo Buehler, Tony Cook, Yaroslav Kuzmin,
-Yves Orton.
+XXX If any significant core contributor has died, we've added a short obituary
+here.
 
-The list above is almost certainly incomplete as it is automatically generated
-from version control history. In particular, it does not include the names of
-the (very much appreciated) contributors who reported issues to the Perl bug
-tracker.
+=head1 Acknowledgements
 
-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.
+XXX Generate this with:
 
-For a more complete list of all of Perl's historical contributors, please see
-the F<AUTHORS> file in the Perl source distribution.
+  perl Porting/acknowledgements.pl v5.25.5..HEAD
 
 =head1 Reporting Bugs
 
diff --git a/t/porting/known_pod_issues.dat b/t/porting/known_pod_issues.dat
index bcb280c..840aac0 100644
--- a/t/porting/known_pod_issues.dat
+++ b/t/porting/known_pod_issues.dat
@@ -359,7 +359,7 @@ pod/perlsolaris.pod Verbatim line length including indents 
exceeds 79 by    13
 pod/perltie.pod        Verbatim line length including indents exceeds 79 by    
3
 pod/perltru64.pod      Verbatim line length including indents exceeds 79 by    
1
 pod/perlwin32.pod      Verbatim line length including indents exceeds 79 by    
7
-porting/epigraphs.pod  Verbatim line length including indents exceeds 79 by    
16
+porting/epigraphs.pod  Verbatim line length including indents exceeds 79 by    
17
 porting/release_managers_guide.pod     Verbatim line length including indents 
exceeds 79 by    1
 porting/todo.pod       ? Should you be using F<...> or maybe L<...> instead of 
1
 utils/ptar     Verbatim paragraph in NAME section      1
diff --git a/vms/descrip_mms.template b/vms/descrip_mms.template
index de336fc..f8bb2e3 100644
--- a/vms/descrip_mms.template
+++ b/vms/descrip_mms.template
@@ -307,7 +307,7 @@ utils : $(utils1) $(utils2) $(utils3) $(utils4) $(utils5)
 extra.pods : miniperl
        @ @extra_pods.com
 
-PERLDELTA_CURRENT = [.pod]perl5255delta.pod
+PERLDELTA_CURRENT = [.pod]perl5256delta.pod
 
 $(PERLDELTA_CURRENT) : [.pod]perldelta.pod
        Copy/NoConfirm/Log $(MMS$SOURCE) $(PERLDELTA_CURRENT)
diff --git a/win32/GNUmakefile b/win32/GNUmakefile
index 628f4e5..efa2995 100644
--- a/win32/GNUmakefile
+++ b/win32/GNUmakefile
@@ -1573,7 +1573,7 @@ utils: $(HAVEMINIPERL) ..\utils\Makefile
        copy ..\README.tw       ..\pod\perltw.pod
        copy ..\README.vos      ..\pod\perlvos.pod
        copy ..\README.win32    ..\pod\perlwin32.pod
-       copy ..\pod\perldelta.pod ..\pod\perl5255delta.pod
+       copy ..\pod\perldelta.pod ..\pod\perl5256delta.pod
        $(MINIPERL) -I..\lib $(PL2BAT) $(UTILS)
        $(MINIPERL) -I..\lib ..\autodoc.pl ..
        $(MINIPERL) -I..\lib ..\pod\perlmodlib.PL -q ..
@@ -1670,7 +1670,7 @@ distclean: realclean
        -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
        -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
        -cd $(PODDIR) && del /f *.html *.bat roffitall \
-           perl5255delta.pod perlaix.pod perlamiga.pod perlandroid.pod \
+           perl5256delta.pod perlaix.pod perlamiga.pod perlandroid.pod \
            perlapi.pod perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \
            perldos.pod perlfreebsd.pod perlhaiku.pod perlhpux.pod \
            perlhurd.pod perlintern.pod perlirix.pod perljp.pod perlko.pod \
diff --git a/win32/Makefile b/win32/Makefile
index 12cead6..82e886b 100644
--- a/win32/Makefile
+++ b/win32/Makefile
@@ -1215,7 +1215,7 @@ utils: $(PERLEXE) ..\utils\Makefile
        copy ..\README.tw       ..\pod\perltw.pod
        copy ..\README.vos      ..\pod\perlvos.pod
        copy ..\README.win32    ..\pod\perlwin32.pod
-       copy ..\pod\perldelta.pod ..\pod\perl5255delta.pod
+       copy ..\pod\perldelta.pod ..\pod\perl5256delta.pod
        cd ..\win32
        $(PERLEXE) $(PL2BAT) $(UTILS)
        $(MINIPERL) -I..\lib ..\autodoc.pl ..
@@ -1314,7 +1314,7 @@ distclean: realclean
        -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
        -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
        -cd $(PODDIR) && del /f *.html *.bat roffitall \
-           perl5255delta.pod perlaix.pod perlamiga.pod perlandroid.pod \
+           perl5256delta.pod perlaix.pod perlamiga.pod perlandroid.pod \
            perlapi.pod perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \
            perldos.pod perlfreebsd.pod perlhaiku.pod perlhpux.pod \
            perlhurd.pod perlintern.pod perlirix.pod perljp.pod perlko.pod \
diff --git a/win32/makefile.mk b/win32/makefile.mk
index 87cf715..bd4068f 100644
--- a/win32/makefile.mk
+++ b/win32/makefile.mk
@@ -1532,7 +1532,7 @@ utils: $(HAVEMINIPERL) ..\utils\Makefile
        copy ..\README.tw       ..\pod\perltw.pod
        copy ..\README.vos      ..\pod\perlvos.pod
        copy ..\README.win32    ..\pod\perlwin32.pod
-       copy ..\pod\perldelta.pod ..\pod\perl5255delta.pod
+       copy ..\pod\perldelta.pod ..\pod\perl5256delta.pod
        $(MINIPERL) -I..\lib $(PL2BAT) $(UTILS)
        $(MINIPERL) -I..\lib ..\autodoc.pl ..
        $(MINIPERL) -I..\lib ..\pod\perlmodlib.PL -q ..
@@ -1630,7 +1630,7 @@ distclean: realclean
        -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API
        -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS
        -cd $(PODDIR) && del /f *.html *.bat roffitall \
-           perl5255delta.pod perlaix.pod perlamiga.pod perlandroid.pod \
+           perl5256delta.pod perlaix.pod perlamiga.pod perlandroid.pod \
            perlapi.pod perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \
            perldos.pod perlfreebsd.pod perlhaiku.pod perlhpux.pod \
            perlhurd.pod perlintern.pod perlirix.pod perljp.pod perlko.pod \
diff --git a/win32/pod.mak b/win32/pod.mak
index 867e5ed..0b7e26d 100644
--- a/win32/pod.mak
+++ b/win32/pod.mak
@@ -50,6 +50,7 @@ POD = perl.pod        \
        perl5253delta.pod       \
        perl5254delta.pod       \
        perl5255delta.pod       \
+       perl5256delta.pod       \
        perl561delta.pod        \
        perl56delta.pod \
        perl581delta.pod        \
@@ -194,6 +195,7 @@ MAN = perl.man      \
        perl5253delta.man       \
        perl5254delta.man       \
        perl5255delta.man       \
+       perl5256delta.man       \
        perl561delta.man        \
        perl56delta.man \
        perl581delta.man        \
@@ -338,6 +340,7 @@ HTML = perl.html    \
        perl5253delta.html      \
        perl5254delta.html      \
        perl5255delta.html      \
+       perl5256delta.html      \
        perl561delta.html       \
        perl56delta.html        \
        perl581delta.html       \
@@ -482,6 +485,7 @@ TEX = perl.tex      \
        perl5253delta.tex       \
        perl5254delta.tex       \
        perl5255delta.tex       \
+       perl5256delta.tex       \
        perl561delta.tex        \
        perl56delta.tex \
        perl581delta.tex        \

--
Perl5 Master Repository

Reply via email to