This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Create new perldelta
authorMax Maischein <corion@corion.net>
Sun, 21 Dec 2014 09:36:04 +0000 (10:36 +0100)
committerMax Maischein <corion@corion.net>
Sun, 21 Dec 2014 09:36:04 +0000 (10:36 +0100)
MANIFEST
Makefile.SH
pod/.gitignore
pod/perl.pod
pod/perl5217delta.pod [new file with mode: 0644]
pod/perldelta.pod
vms/descrip_mms.template
win32/Makefile
win32/makefile.mk
win32/pod.mak

index b3f0f2d..b8c151e 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -4602,6 +4602,7 @@ pod/perl5213delta.pod             Perl changes in version 5.21.3
 pod/perl5214delta.pod          Perl changes in version 5.21.4
 pod/perl5215delta.pod          Perl changes in version 5.21.5
 pod/perl5216delta.pod          Perl changes in version 5.21.6
+pod/perl5217delta.pod          Perl changes in version 5.21.7
 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
index 56f47a3..076bfc3 100755 (executable)
@@ -489,7 +489,7 @@ mini_obj = $(minindt_obj) $(MINIDTRACE_O)
 ndt_obj = $(obj0) $(obj1) $(obj2) $(obj3) $(ARCHOBJS)
 obj = $(ndt_obj) $(DTRACE_O)
 
-perltoc_pod_prereqs = extra.pods pod/perl5217delta.pod pod/perlapi.pod pod/perlintern.pod pod/perlmodlib.pod pod/perluniprops.pod
+perltoc_pod_prereqs = extra.pods pod/perl5218delta.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
 
@@ -1012,9 +1012,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/perl5217delta.pod: pod/perldelta.pod
-       $(RMS) pod/perl5217delta.pod
-       $(LNS) perldelta.pod pod/perl5217delta.pod
+pod/perl5218delta.pod: pod/perldelta.pod
+       $(RMS) pod/perl5218delta.pod
+       $(LNS) perldelta.pod pod/perl5218delta.pod
 
 extra.pods: $(MINIPERL_EXE)
        -@test ! -f extra.pods || rm -f `cat extra.pods`
index b8f74a6..1cbdcc3 100644 (file)
@@ -53,7 +53,7 @@
 /roffitall
 
 # generated
-/perl5217delta.pod
+/perl5218delta.pod
 /perlapi.pod
 /perlintern.pod
 *.html
index a21f56a..1ad467c 100644 (file)
@@ -179,6 +179,7 @@ aux a2p c2ph h2ph h2xs perlbug pl2pm pod2html pod2man s2p splain xsubpp
 
     perlhist           Perl history records
     perldelta          Perl changes since previous version
+    perl5217delta      Perl changes in version 5.21.7
     perl5216delta      Perl changes in version 5.21.6
     perl5215delta      Perl changes in version 5.21.5
     perl5214delta      Perl changes in version 5.21.4
diff --git a/pod/perl5217delta.pod b/pod/perl5217delta.pod
new file mode 100644 (file)
index 0000000..82b9144
--- /dev/null
@@ -0,0 +1,577 @@
+=encoding utf8
+
+=head1 NAME
+
+perl5217delta - what is new for perl v5.21.7
+
+=head1 DESCRIPTION
+
+This document describes differences between the 5.21.6 release and the 5.21.7
+release.
+
+If you are upgrading from an earlier release such as 5.21.5, first read
+L<perl5216delta>, which describes differences between 5.21.5 and 5.21.6.
+
+=head1 Core Enhancements
+
+=head2 faster array and hash lookups
+
+Array and hash lookups (especially nested ones) that use only constants
+or simple variables as keys, are now considerably faster. See
+L</Internal Changes> for more details.
+
+=head2 C<fileno> now works on directory handles
+
+When the relevant support is available in the operating system, the
+C<fileno> builtin now works on directory handles, yielding the
+underlying file descriptor in the same way as for filehandles. On
+operating systems without such support, C<fileno> on a directory handle
+continues to return the undefined value, as before, but also sets C<$!> to
+indicate that the operation is not supported.
+
+Currently, this uses either a C<dd_fd> member in the OS C<DIR>
+structure, or a dirfd(3) function as specified by POSIX.1-2008.
+
+=head1 Incompatible Changes
+
+=head2 C<&> and C<\&> prototypes accepts only subs
+
+The C<&> prototype character now accepts only anonymous subs (C<sub {...}>)
+and things beginning with C<\&>.  Formerly it erroneously also allowed
+C<undef> and references to array, hashes, and lists.  [perl #4539]
+[perl #123062]
+
+The C<\&> prototype was allowing subroutine calls, whereas now it only
+allows subroutines.  C<&foo> is permitted.  C<&foo()> and C<foo()> are not.
+[perl #77860]
+
+=head2 C<use encoding> is now lexical
+
+The L<encoding> pragma's effect is now limited to lexical scope.  This
+pragma is deprecated, but in the meantime, it could adversely affect
+unrelated modules that are included in the same program.
+
+=head2 List slices returning empty lists
+
+List slices return an empty list now only if the original list was empty
+(or if there are no indices).  Formerly, a list slice would return an empty
+list if all indices fell outside the original list.  [perl #114498]
+
+=head1 Deprecations
+
+=head2 Setting C<${^ENCODING}> to anything but C<undef>
+
+This variable allows Perl scripts to be written in a non-ASCII,
+non-UTF-8 encoding.  However, it affects all modules globally, leading
+to wrong answers and segmentation faults.  New scripts should be written
+in UTF-8; old scripts should be converted to UTF-8, which is easily done
+with the L<encoding> pragma.
+
+=head1 Performance Enhancements
+
+=over 4
+
+=item *
+
+Win32 Perl uses 8 KB less of per-process memory than before for every perl
+process of this version. This data is now memory mapped from disk and shared
+between perl processes from the same perl binary.
+
+=item *
+
+If method and class names are known at compile time, hashes are precomputed
+to speed up run-time method lookup.  Also, compound method names like
+C<SUPER::new> are parsed at compile time, to save having to parse them at
+run time.
+
+=back
+
+=head1 Modules and Pragmata
+
+=head2 Updated Modules and Pragmata
+
+=over 4
+
+=item *
+
+The PathTools module collection has been upgraded from 3.52 to 3.53.
+
+Don't turn leading C<//> into C</> on Cygwin. [perl #122635]
+
+=item *
+
+L<Archive::Tar> has been upgraded from version 2.02 to 2.04.
+
+=item *
+
+L<arybase> has been upgraded from version 0.08 to 0.09.
+
+=item *
+
+L<B> has been upgraded from version 1.53 to 1.54.
+
+Nulled COPs are now of class C<B::COP>, rather than C<B::OP>.
+
+B::REGEXP objects now provide a C<qr_anoncv> method for accessing the
+implicit CV associated with C<qr//> things containing code blocks, and a
+C<compflags> method that returns the pertinent flags originating from the
+C<qr//blahblah> op.
+
+B::PMOP now provides a C<pmregexp> method returning a B::REGEXP object.
+
+Two new classes, B::PADNAME and B::PADNAMELIST, have been introduced.
+
+=item *
+
+L<B::Concise> has been upgraded from version 0.995 to 0.996.
+
+=item *
+
+L<B::Deparse> has been upgraded from version 1.30 to 1.31.
+
+BEGIN blocks at the end of the enclosing scope are now deparsed in the
+right place.  [perl #77452]
+
+BEGIN blocks were sometimes deparsed as __ANON__, but are now always called
+BEGIN.
+
+Lexical subroutines are now fully deparsed.  [perl #116553]
+
+Deparsing of C<$lexical =~ //> was accidentally broken in 1.30 (perl
+5.21.6), omitting the C<$lexical =~>, but has now been fixed.
+
+C<Anything =~ y///r> with C</r> no longer omits the left-hand operand.
+
+The op trees that make up regexp code blocks are now deparsed for real.
+Formerly, the original string that made up the regular expression was used.
+That caused problems with C<qr/(?{E<lt>E<lt>heredoc})/> and multiline code blocks,
+which were deparsed incorrectly.  [perl #123217] [perl #115256]
+
+C<$;> at the end of a statement no longer loses its semicolon.
+[perl #123357]
+
+Some cases of subroutine declarations stored in the stash in shorthand form
+were being omitted.
+
+Non-ASCII characters are now consistently escaped in strings, instead of
+some of the time.  (There are still outstanding problems with regular
+expressions and identifiers that have not been fixed.)
+
+When prototype sub calls are deparsed with C<&> (e.g., under the B<-P>
+option), C<scalar> is now added where appropriate, to force the scalar
+context implied by the prototype.
+
+C<require(foo())>, C<do(foo())>, C<goto(foo())> and similar constructs with
+loop controls are now deparsed correctly.  The outer parentheses are not
+optional.
+
+Whitespace is no longer escaped in regular expressions, because it was
+getting erroneously escaped within C<(?x:...)> sections.
+
+C<sub foo { foo() }> is now deparsed with those mandatory parentheses.
+
+C</@array/> is now deparsed as a regular expression, and not just
+C<@array>.
+
+C</@{-}/>, C</@{+}/> and C<$#{1}> are now deparsed with the braces, which
+are mandatory in these cases.
+
+In deparsing feature bundles, B::Deparse was emitting C<no feature;> first
+instead of C<no feature ':all';>.  This has been fixed.
+
+C<chdir FH> is now deparsed without quotation marks.
+
+C<\my @a> is now deparsed without parentheses.  (Parenthese would flatten
+the array.)
+
+C<system> and C<exec> followed by a block are now deparsed correctly.
+Formerly there was an erroneous C<do> before the block.
+
+C<< use constant QR =E<gt> qr/.../flags >> followed by C<"" =~ QR> is no longer
+without the flags.
+
+=item *
+
+L<charnames> has been upgraded from version 1.41 to 1.43.
+
+=item *
+
+L<Compress::Raw::Bzip2> has been upgraded from version 2.066 to 2.067.
+
+=item *
+
+L<Compress::Raw::Zlib> has been upgraded from version 2.066 to 2.067.
+
+=item *
+
+L<Data::Dumper> has been upgraded from version 2.154 to 2.155.
+
+=item *
+
+L<DB_File> has been upgraded from version 1.831 to 1.834.
+
+=item *
+
+L<Devel::Peek> has been upgraded from version 1.19 to 1.20.
+
+=item *
+
+L<Devel::PPPort> has been upgraded from version 3.24 to 3.25.
+
+=item *
+
+L<DynaLoader> has been upgraded from version 1.28 to 1.29.
+
+=item *
+
+L<Encode> has been upgraded from version 2.64 to 2.67.
+
+=item *
+
+L<Errno> has been upgraded from version 1.21 to 1.22.
+
+=item *
+
+L<ExtUtils::CBuilder> has been upgraded from version 0.280220 to 0.280221.
+
+=item *
+
+L<ExtUtils::MakeMaker> has been upgraded from version 7.02 to 7.04.
+
+=item *
+
+L<ExtUtils::ParseXS> has been upgraded from version 3.26 to 3.27.
+
+Only declare C<file> unused if we actually define it.
+
+Improve generated C<RETVAL> code generation to avoid repeated
+references to C<ST(0)>.  [perl #123278]
+
+Broaden and document the C</OBJ$/> to C</REF$/> typemap optimization
+for the C<DESTROY> method.  [perl #123418]
+
+=item *
+
+L<feature> has been upgraded from version 1.38 to 1.39.
+
+=item *
+
+L<File::Spec> has been upgraded from version 3.51 to 3.54.
+
+=item *
+
+L<Filter::Util::Call> has been upgraded from version 1.49 to 1.51.
+
+=item *
+
+L<HTTP::Tiny> has been upgraded from version 0.051 to 0.053.
+
+=item *
+
+L<IO> has been upgraded from version 1.34 to 1.35.
+
+=item *
+
+The IO::Compress module collection has been upgraded from version 2.066 to 2.067.
+
+=item *
+
+L<IO::Socket::IP> has been upgraded from version 0.32 to 0.34.
+
+=item *
+
+L<Locale::Codes> has been upgraded from version 3.32 to 3.33.
+
+=item *
+
+L<Locale::Maketext> has been upgraded from version 1.25 to 1.26.
+
+=item *
+
+L<Module::CoreList> has been upgraded from version 5.20141120 to 5.20141220.
+
+=item *
+
+L<mro> has been upgraded from version 1.16 to 1.17.
+
+=item *
+
+L<NDBM_File> has been upgraded from version 1.13 to 1.14.
+
+=item *
+
+L<Opcode> has been upgraded from version 1.29 to 1.30.
+
+=item *
+
+L<PerlIO::scalar> has been upgraded from version 0.20 to 0.21.
+
+Reading from a position well past the end of the scalar now correctly
+returns end of file.  [perl #123443]
+
+Seeking to a negative position still fails, but no longer leaves the
+file position set to a negation location.
+
+C<eof()> on a C<PerlIO::scalar> handle now properly returns true when
+the file position is past the 2GB mark on 32-bit systems.
+
+=item *
+
+L<Pod::Escapes> has been upgraded from version 1.06 to 1.07.
+
+=item *
+
+L<POSIX> has been upgraded from version 1.46 to 1.48.
+
+=item *
+
+L<SDBM_File> has been upgraded from version 1.11 to 1.12.
+
+=item *
+
+L<Storable> has been upgraded from version 2.51 to 2.52.
+
+=item *
+
+L<strict> has been upgraded from version 1.08 to 1.09.
+
+=item *
+
+L<Sys::Hostname> has been upgraded from version 1.19 to 1.20.
+
+=item *
+
+L<Test::Simple> has been upgraded from version 1.301001_075 to 1.301001_090.
+
+=item *
+
+L<threads> has been upgraded from version 1.96 to 1.96_001.
+
+=item *
+
+L<Unicode::Collate> has been upgraded from version 1.07 to 1.09.
+
+=item *
+
+L<XSLoader> has been upgraded from version 0.19 to 0.20
+
+Don't test twice for bootstrap file.
+
+=back
+
+=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>.
+
+=head2 Changes to Existing Diagnostics
+
+=over 4
+
+=item *
+
+"Variable %s will not stay shared" has been changed to say "Subroutine"
+when it is actually a lexical sub that will not stay shared.
+
+=back
+
+=head1 Platform Support
+
+=head2 Platform-Specific Notes
+
+=head3 Win32
+
+=over
+
+=item *
+
+Intel C builds are now always built with C99 mode on.
+
+=back
+
+=head1 Internal Changes
+
+=over 4
+
+=item *
+
+The PADNAME and PADNAMELIST types are now separate types, and no longer
+simply aliases for SV and AV.  [perl #123223]
+
+=item *
+
+Pad names are now always UTF8.  The C<PadnameUTF8> macro always returns
+true.  Previously, this was effectively the case already, but any support
+for two different internal representations of pad names has now been
+removed.
+
+=item *
+
+The C<OP_SIBLING> and C<OP_HAS_SIBLING> macros added in an earlier 5.21.x
+release have been renamed C<OpSIBLING> and C<OpHAS_SIBLING>, following the
+existing convention.
+
+=item *
+
+A new op class, C<UNOP_AUX>, has been added. This is a subclass of
+C<UNOP> with an C<op_aux> field added, which points to an array of unions
+of C<UV>, C<SV*> etc. It is intended for where an op needs to store more data
+than a simple C<op_sv> or whatever. Currently the only op of this type is
+C<OP_MULTIDEREF> (see below).
+
+=item *
+
+A new op has been added, C<OP_MULTIDEREF>, which performs one or more
+nested array and hash lookups where the key is a constant or simple
+variable. For example the expression C<$a[0]{$k}[$i]>, which previously
+involved ten C<rv2Xv>, C<Xelem>, C<gvsv> and C<const> ops is now performed
+by a single C<multideref> op. It can also handle C<local>, C<exists> and
+C<delete>. A non-simple index expression, such as C<[$i+1]> is still done
+using C<aelem/helem>, and single-level array lookup with a small constant
+index is still done using C<aelemfast>.
+
+=back
+
+=head1 Selected Bug Fixes
+
+=over 4
+
+=item *
+
+On Win32, restoring in a child pseudo-process a variable that was
+C<local()>ed in a parent pseudo-process before the C<fork> happened caused
+memory corruption and a crash in the child pseudo-process (and therefore OS
+process).  [perl #40565]
+
+=item *
+
+Calling C<write> on a format with a C<^**> field could produce a panic
+in sv_chop() if there were insufficient arguments or if the variable
+used to fill the field was empty.  [perl #123245]
+
+=item *
+
+Non-ASCII lexical sub names (use in error messages) on longer have extra
+junk on the end.
+
+=item *
+
+The C<\@> subroutine prototype no longer flattens parenthesized arrays
+(taking a reference to each element), but takes a reference to the array
+itself.  [perl #47363]
+
+=item *
+
+A block containing nothing except a C-style C<for> loop could corrupt the
+stack, causing lists outside the block to lose elements or have elements
+overwritten.  This could happen with C<map { for(...){...} } ...> and with
+lists containing C<do { for(...){...} }>.  [perl #123286]
+
+=item *
+
+C<scalar()> now propagates lvalue context, so that
+C<for(scalar($#foo)) { ... }> can modify C<$#foo> through C<$_>.
+
+=item *
+
+C<qr/@array(?{block})/> no longer dies with "Bizarre copy of ARRAY".
+[#123344]
+
+=item *
+
+C<eval '$variable'> in nested named subroutines would sometimes look up a
+global variable even with a lexical variable in scope.
+
+In perl 5.20.0, C<sort CORE::fake> where 'fake' is anything other than a
+keyword started chopping of the last 6 characters and treating the result
+as a sort sub name.  The previous behaviour of treating "CORE::fake" as a
+sort sub name has been restored.  [perl #123410]
+
+=item *
+
+Outside of C<use utf8>, a single-character Latin-1 lexical variable is
+disallowed.  The error message for it, "Can't use global $foo...", was
+giving garbage instead of the variable name.
+
+=item *
+
+C<readline> on a nonexistent handle was causing C<${^LAST_FH}> to produce a
+reference to an undefined scalar (or fail an assertion).  Now
+C<${^LAST_FH}> ends up undefined.
+
+=item *
+
+C<(...)x...> in void context now applies scalar context to the left-hand
+argument, instead of the context the current sub was called in.
+[perl #123020]
+
+=back
+
+=head1 Acknowledgements
+
+Perl 5.21.7 represents approximately 4 weeks of development since Perl 5.21.6
+and contains approximately 97,000 lines of changes across 640 files from 30
+authors.
+
+Excluding auto-generated files, documentation and release tools, there were
+approximately 26,000 lines of changes to 400 .pm, .t, .c and .h files.
+
+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.21.7:
+
+Aaron Crane, Aristotle Pagaltzis, Chad Granum, Chris 'BinGOs' Williams, Craig
+A. Berry, Dagfinn Ilmari Manns├Ñker, Daniel Dragan, David Mitchell, Eric
+Herman, Father Chrysostomos, H.Merijn Brand, Hugo van der Sanden, James
+Raspass, Jarkko Hietaniemi, Jim Cromie, Karen Etheridge, Karl Williamson, kmx,
+Lukas Mai, Matthew Horsfall, Max Maischein, Petr P├¡sa┼Ö, Ricardo Signes,
+Shlomi Fish, Steffen M├╝ller, Steve Hay, Sullivan Beck, syber, Todd Rinaldo,
+Tony Cook.
+
+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.
+
+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.
+
+For a more complete list of all of Perl's historical contributors, please see
+the F<AUTHORS> file in the Perl source distribution.
+
+=head1 Reporting Bugs
+
+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
+https://rt.perl.org/ .  There may also be information at
+http://www.perl.org/ , the Perl Home Page.
+
+If you believe you have an unreported bug, please run the L<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.
+
+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 will 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 SEE ALSO
+
+The F<Changes> file for an explanation of how to view exhaustive details on
+what changed.
+
+The F<INSTALL> file for how to build Perl.
+
+The F<README> file for general stuff.
+
+The F<Artistic> and F<Copying> files for copyright information.
+
+=cut
index a4fcfaf..54be512 100644 (file)
 
 =head1 NAME
 
-perldelta - what is new for perl v5.21.7
+[ 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.21.8
 
 =head1 DESCRIPTION
 
-This document describes differences between the 5.21.6 release and the 5.21.7
+This document describes differences between the 5.21.7 release and the 5.21.8
 release.
 
-If you are upgrading from an earlier release such as 5.21.5, first read
-L<perl5216delta>, which describes differences between 5.21.5 and 5.21.6.
-
-=head1 Core Enhancements
-
-=head2 faster array and hash lookups
+If you are upgrading from an earlier release such as 5.21.6, first read
+L<perl5217delta>, which describes differences between 5.21.6 and 5.21.7.
 
-Array and hash lookups (especially nested ones) that use only constants
-or simple variables as keys, are now considerably faster. See
-L</Internal Changes> for more details.
+=head1 Notice
 
-=head2 C<fileno> now works on directory handles
+XXX Any important notices here
 
-When the relevant support is available in the operating system, the
-C<fileno> builtin now works on directory handles, yielding the
-underlying file descriptor in the same way as for filehandles. On
-operating systems without such support, C<fileno> on a directory handle
-continues to return the undefined value, as before, but also sets C<$!> to
-indicate that the operation is not supported.
+=head1 Core Enhancements
 
-Currently, this uses either a C<dd_fd> member in the OS C<DIR>
-structure, or a dirfd(3) function as specified by POSIX.1-2008.
+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.
 
-=head1 Incompatible Changes
+[ List each enhancement as a =head2 entry ]
 
-=head2 C<&> and C<\&> prototypes accepts only subs
+=head1 Security
 
-The C<&> prototype character now accepts only anonymous subs (C<sub {...}>)
-and things beginning with C<\&>.  Formerly it erroneously also allowed
-C<undef> and references to array, hashes, and lists.  [perl #4539]
-[perl #123062]
+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.
 
-The C<\&> prototype was allowing subroutine calls, whereas now it only
-allows subroutines.  C<&foo> is permitted.  C<&foo()> and C<foo()> are not.
-[perl #77860]
+[ List each security issue as a =head2 entry ]
 
-=head2 C<use encoding> is now lexical
+=head1 Incompatible Changes
 
-The L<encoding> pragma's effect is now limited to lexical scope.  This
-pragma is deprecated, but in the meantime, it could adversely affect
-unrelated modules that are included in the same program.
+XXX For a release on a stable branch, this section aspires to be:
 
-=head2 List slices returning empty lists
+    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 slices return an empty list now only if the original list was empty
-(or if there are no indices).  Formerly, a list slice would return an empty
-list if all indices fell outside the original list.  [perl #114498]
+[ List each incompatible change as a =head2 entry ]
 
 =head1 Deprecations
 
-=head2 Setting C<${^ENCODING}> to anything but C<undef>
+XXX Any deprecated features, syntax, modules etc. should be listed here.
 
-This variable allows Perl scripts to be written in a non-ASCII,
-non-UTF-8 encoding.  However, it affects all modules globally, leading
-to wrong answers and segmentation faults.  New scripts should be written
-in UTF-8; old scripts should be converted to UTF-8, which is easily done
-with the L<encoding> pragma.
+=head2 Module removals
 
-=head1 Performance Enhancements
+XXX Remove this section if inapplicable.
 
-=over 4
+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.
 
-=item *
+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.
 
-Win32 Perl uses 8 KB less of per-process memory than before for every perl
-process of this version. This data is now memory mapped from disk and shared
-between perl processes from the same perl binary.
+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.
 
-=item *
-
-If method and class names are known at compile time, hashes are precomputed
-to speed up run-time method lookup.  Also, compound method names like
-C<SUPER::new> are parsed at compile time, to save having to parse them at
-run time.
-
-=back
-
-=head1 Modules and Pragmata
+=over
 
-=head2 Updated Modules and Pragmata
+=item XXX
 
-=over 4
-
-=item *
+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.
 
-The PathTools module collection has been upgraded from 3.52 to 3.53.
+=back
 
-Don't turn leading C<//> into C</> on Cygwin. [perl #122635]
+[ List each other deprecation as a =head2 entry ]
 
-=item *
+=head1 Performance Enhancements
 
-L<Archive::Tar> has been upgraded from version 2.02 to 2.04.
+XXX Changes which enhance performance without changing behaviour go here.
+There may well be none in a stable release.
 
-=item *
+[ List each enhancement as a =item entry ]
 
-L<arybase> has been upgraded from version 0.08 to 0.09.
+=over 4
 
 =item *
 
-L<B> has been upgraded from version 1.53 to 1.54.
+XXX
 
-Nulled COPs are now of class C<B::COP>, rather than C<B::OP>.
+=back
 
-B::REGEXP objects now provide a C<qr_anoncv> method for accessing the
-implicit CV associated with C<qr//> things containing code blocks, and a
-C<compflags> method that returns the pertinent flags originating from the
-C<qr//blahblah> op.
+=head1 Modules and Pragmata
 
-B::PMOP now provides a C<pmregexp> method returning a B::REGEXP object.
+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.
 
-Two new classes, B::PADNAME and B::PADNAMELIST, have been introduced.
+[ Within each section, list entries as a =item entry ]
 
-=item *
+=head2 New Modules and Pragmata
 
-L<B::Concise> has been upgraded from version 0.995 to 0.996.
+=over 4
 
 =item *
 
-L<B::Deparse> has been upgraded from version 1.30 to 1.31.
-
-BEGIN blocks at the end of the enclosing scope are now deparsed in the
-right place.  [perl #77452]
-
-BEGIN blocks were sometimes deparsed as __ANON__, but are now always called
-BEGIN.
-
-Lexical subroutines are now fully deparsed.  [perl #116553]
-
-Deparsing of C<$lexical =~ //> was accidentally broken in 1.30 (perl
-5.21.6), omitting the C<$lexical =~>, but has now been fixed.
-
-C<Anything =~ y///r> with C</r> no longer omits the left-hand operand.
-
-The op trees that make up regexp code blocks are now deparsed for real.
-Formerly, the original string that made up the regular expression was used.
-That caused problems with C<qr/(?{E<lt>E<lt>heredoc})/> and multiline code blocks,
-which were deparsed incorrectly.  [perl #123217] [perl #115256]
-
-C<$;> at the end of a statement no longer loses its semicolon.
-[perl #123357]
-
-Some cases of subroutine declarations stored in the stash in shorthand form
-were being omitted.
-
-Non-ASCII characters are now consistently escaped in strings, instead of
-some of the time.  (There are still outstanding problems with regular
-expressions and identifiers that have not been fixed.)
-
-When prototype sub calls are deparsed with C<&> (e.g., under the B<-P>
-option), C<scalar> is now added where appropriate, to force the scalar
-context implied by the prototype.
-
-C<require(foo())>, C<do(foo())>, C<goto(foo())> and similar constructs with
-loop controls are now deparsed correctly.  The outer parentheses are not
-optional.
+XXX
 
-Whitespace is no longer escaped in regular expressions, because it was
-getting erroneously escaped within C<(?x:...)> sections.
-
-C<sub foo { foo() }> is now deparsed with those mandatory parentheses.
-
-C</@array/> is now deparsed as a regular expression, and not just
-C<@array>.
-
-C</@{-}/>, C</@{+}/> and C<$#{1}> are now deparsed with the braces, which
-are mandatory in these cases.
-
-In deparsing feature bundles, B::Deparse was emitting C<no feature;> first
-instead of C<no feature ':all';>.  This has been fixed.
-
-C<chdir FH> is now deparsed without quotation marks.
-
-C<\my @a> is now deparsed without parentheses.  (Parenthese would flatten
-the array.)
-
-C<system> and C<exec> followed by a block are now deparsed correctly.
-Formerly there was an erroneous C<do> before the block.
-
-C<< use constant QR =E<gt> qr/.../flags >> followed by C<"" =~ QR> is no longer
-without the flags.
-
-=item *
-
-L<charnames> has been upgraded from version 1.41 to 1.43.
+=back
 
-=item *
+=head2 Updated Modules and Pragmata
 
-L<Compress::Raw::Bzip2> has been upgraded from version 2.066 to 2.067.
+=over 4
 
 =item *
 
-L<Compress::Raw::Zlib> has been upgraded from version 2.066 to 2.067.
+L<XXX> has been upgraded from version A.xx to B.yy.
 
-=item *
+=back
 
-L<Data::Dumper> has been upgraded from version 2.154 to 2.155.
+=head2 Removed Modules and Pragmata
 
-=item *
-
-L<DB_File> has been upgraded from version 1.831 to 1.834.
+=over 4
 
 =item *
 
-L<Devel::Peek> has been upgraded from version 1.19 to 1.20.
+XXX
 
-=item *
+=back
 
-L<Devel::PPPort> has been upgraded from version 3.24 to 3.25.
+=head1 Documentation
 
-=item *
+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>.
 
-L<DynaLoader> has been upgraded from version 1.28 to 1.29.
-
-=item *
+=head2 New Documentation
 
-L<Encode> has been upgraded from version 2.64 to 2.67.
+XXX Changes which create B<new> files in F<pod/> go here.
 
-=item *
+=head3 L<XXX>
 
-L<Errno> has been upgraded from version 1.21 to 1.22.
+XXX Description of the purpose of the new file here
 
-=item *
+=head2 Changes to Existing Documentation
 
-L<ExtUtils::CBuilder> has been upgraded from version 0.280220 to 0.280221.
+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.
 
-=item *
+=head3 L<XXX>
 
-L<ExtUtils::MakeMaker> has been upgraded from version 7.02 to 7.04.
+=over 4
 
 =item *
 
-L<ExtUtils::ParseXS> has been upgraded from version 3.26 to 3.27.
-
-Only declare C<file> unused if we actually define it.
+XXX Description of the change here
 
-Improve generated C<RETVAL> code generation to avoid repeated
-references to C<ST(0)>.  [perl #123278]
+=back
 
-Broaden and document the C</OBJ$/> to C</REF$/> typemap optimization
-for the C<DESTROY> method.  [perl #123418]
+=head1 Diagnostics
 
-=item *
+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>.
 
-L<feature> has been upgraded from version 1.38 to 1.39.
+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.
 
-=item *
+=head2 New Diagnostics
 
-L<File::Spec> has been upgraded from version 3.51 to 3.54.
+XXX Newly added diagnostic messages go under here, separated into New Errors
+and New Warnings
 
-=item *
+=head3 New Errors
 
-L<Filter::Util::Call> has been upgraded from version 1.49 to 1.51.
+=over 4
 
 =item *
 
-L<HTTP::Tiny> has been upgraded from version 0.051 to 0.053.
+XXX L<message|perldiag/"message">
 
-=item *
-
-L<IO> has been upgraded from version 1.34 to 1.35.
+=back
 
-=item *
+=head3 New Warnings
 
-The IO::Compress module collection has been upgraded from version 2.066 to 2.067.
+=over 4
 
 =item *
 
-L<IO::Socket::IP> has been upgraded from version 0.32 to 0.34.
+XXX L<message|perldiag/"message">
 
-=item *
+=back
 
-L<Locale::Codes> has been upgraded from version 3.32 to 3.33.
+=head2 Changes to Existing Diagnostics
 
-=item *
+XXX Changes (i.e. rewording) of diagnostic messages go here
 
-L<Locale::Maketext> has been upgraded from version 1.25 to 1.26.
+=over 4
 
 =item *
 
-L<Module::CoreList> has been upgraded from version 5.20141120 to 5.20141220.
+XXX Describe change here
 
-=item *
+=back
 
-L<mro> has been upgraded from version 1.16 to 1.17.
+=head1 Utility Changes
 
-=item *
+XXX Changes to installed programs such as F<perlbug> and F<xsubpp> go here.
+Most of these are built within the directory F<utils>.
 
-L<NDBM_File> has been upgraded from version 1.13 to 1.14.
+[ 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. ]
 
-=item *
+=head2 L<XXX>
 
-L<Opcode> has been upgraded from version 1.29 to 1.30.
+=over 4
 
 =item *
 
-L<PerlIO::scalar> has been upgraded from version 0.20 to 0.21.
+XXX
 
-Reading from a position well past the end of the scalar now correctly
-returns end of file.  [perl #123443]
+=back
 
-Seeking to a negative position still fails, but no longer leaves the
-file position set to a negation location.
+=head1 Configuration and Compilation
 
-C<eof()> on a C<PerlIO::scalar> handle now properly returns true when
-the file position is past the 2GB mark on 32-bit systems.
+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.
 
-=item *
+[ List changes as a =item entry ].
 
-L<Pod::Escapes> has been upgraded from version 1.06 to 1.07.
+=over 4
 
 =item *
 
-L<POSIX> has been upgraded from version 1.46 to 1.48.
+XXX
 
-=item *
-
-L<SDBM_File> has been upgraded from version 1.11 to 1.12.
+=back
 
-=item *
+=head1 Testing
 
-L<Storable> has been upgraded from version 2.51 to 2.52.
+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.
 
-=item *
+[ List each test improvement as a =item entry ]
 
-L<strict> has been upgraded from version 1.08 to 1.09.
+=over 4
 
 =item *
 
-L<Sys::Hostname> has been upgraded from version 1.19 to 1.20.
+XXX
 
-=item *
+=back
 
-L<Test::Simple> has been upgraded from version 1.301001_075 to 1.301001_090.
+=head1 Platform Support
 
-=item *
+XXX Any changes to platform support should be listed in the sections below.
 
-L<threads> has been upgraded from version 1.96 to 1.96_001.
+[ Within the sections, list each platform as a =item entry with specific
+changes as paragraphs below it. ]
 
-=item *
+=head2 New Platforms
 
-L<Unicode::Collate> has been upgraded from version 1.07 to 1.09.
+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.
 
-=item *
+=over 4
 
-L<XSLoader> has been upgraded from version 0.19 to 0.20
+=item XXX-some-platform
 
-Don't test twice for bootstrap file.
+XXX
 
 =back
 
-=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>.
+=head2 Discontinued Platforms
 
-=head2 Changes to Existing Diagnostics
+XXX List any platforms that this version of perl no longer compiles on.
 
 =over 4
 
-=item *
+=item XXX-some-platform
 
-"Variable %s will not stay shared" has been changed to say "Subroutine"
-when it is actually a lexical sub that will not stay shared.
+XXX
 
 =back
 
-=head1 Platform Support
-
 =head2 Platform-Specific Notes
 
-=head3 Win32
+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.
 
-=over
+=over 4
 
-=item *
+=item XXX-some-platform
 
-Intel C builds are now always built with C99 mode on.
+XXX
 
 =back
 
 =head1 Internal Changes
 
-=over 4
-
-=item *
-
-The PADNAME and PADNAMELIST types are now separate types, and no longer
-simply aliases for SV and AV.  [perl #123223]
-
-=item *
-
-Pad names are now always UTF8.  The C<PadnameUTF8> macro always returns
-true.  Previously, this was effectively the case already, but any support
-for two different internal representations of pad names has now been
-removed.
-
-=item *
-
-The C<OP_SIBLING> and C<OP_HAS_SIBLING> macros added in an earlier 5.21.x
-release have been renamed C<OpSIBLING> and C<OpHAS_SIBLING>, following the
-existing convention.
+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 ]
 
-A new op class, C<UNOP_AUX>, has been added. This is a subclass of
-C<UNOP> with an C<op_aux> field added, which points to an array of unions
-of C<UV>, C<SV*> etc. It is intended for where an op needs to store more data
-than a simple C<op_sv> or whatever. Currently the only op of this type is
-C<OP_MULTIDEREF> (see below).
+=over 4
 
 =item *
 
-A new op has been added, C<OP_MULTIDEREF>, which performs one or more
-nested array and hash lookups where the key is a constant or simple
-variable. For example the expression C<$a[0]{$k}[$i]>, which previously
-involved ten C<rv2Xv>, C<Xelem>, C<gvsv> and C<const> ops is now performed
-by a single C<multideref> op. It can also handle C<local>, C<exists> and
-C<delete>. A non-simple index expression, such as C<[$i+1]> is still done
-using C<aelem/helem>, and single-level array lookup with a small constant
-index is still done using C<aelemfast>.
+XXX
 
 =back
 
 =head1 Selected Bug Fixes
 
-=over 4
-
-=item *
-
-On Win32, restoring in a child pseudo-process a variable that was
-C<local()>ed in a parent pseudo-process before the C<fork> happened caused
-memory corruption and a crash in the child pseudo-process (and therefore OS
-process).  [perl #40565]
-
-=item *
-
-Calling C<write> on a format with a C<^**> field could produce a panic
-in sv_chop() if there were insufficient arguments or if the variable
-used to fill the field was empty.  [perl #123245]
+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>.
 
-=item *
+[ List each fix as a =item entry ]
 
-Non-ASCII lexical sub names (use in error messages) on longer have extra
-junk on the end.
+=over 4
 
 =item *
 
-The C<\@> subroutine prototype no longer flattens parenthesized arrays
-(taking a reference to each element), but takes a reference to the array
-itself.  [perl #47363]
-
-=item *
+XXX
 
-A block containing nothing except a C-style C<for> loop could corrupt the
-stack, causing lists outside the block to lose elements or have elements
-overwritten.  This could happen with C<map { for(...){...} } ...> and with
-lists containing C<do { for(...){...} }>.  [perl #123286]
+=back
 
-=item *
+=head1 Known Problems
 
-C<scalar()> now propagates lvalue context, so that
-C<for(scalar($#foo)) { ... }> can modify C<$#foo> through C<$_>.
+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.
 
-=item *
+[ List each fix as a =item entry ]
 
-C<qr/@array(?{block})/> no longer dies with "Bizarre copy of ARRAY".
-[#123344]
+=over 4
 
 =item *
 
-C<eval '$variable'> in nested named subroutines would sometimes look up a
-global variable even with a lexical variable in scope.
-
-In perl 5.20.0, C<sort CORE::fake> where 'fake' is anything other than a
-keyword started chopping of the last 6 characters and treating the result
-as a sort sub name.  The previous behaviour of treating "CORE::fake" as a
-sort sub name has been restored.  [perl #123410]
+XXX
 
-=item *
+=back
 
-Outside of C<use utf8>, a single-character Latin-1 lexical variable is
-disallowed.  The error message for it, "Can't use global $foo...", was
-giving garbage instead of the variable name.
+=head1 Errata From Previous Releases
 
-=item *
-
-C<readline> on a nonexistent handle was causing C<${^LAST_FH}> to produce a
-reference to an undefined scalar (or fail an assertion).  Now
-C<${^LAST_FH}> ends up undefined.
+=over 4
 
 =item *
 
-C<(...)x...> in void context now applies scalar context to the left-hand
-argument, instead of the context the current sub was called in.
-[perl #123020]
+XXX Add anything here that we forgot to add, or were mistaken about, in
+the perldelta of a previous release.
 
 =back
 
-=head1 Acknowledgements
-
-Perl 5.21.7 represents approximately 4 weeks of development since Perl 5.21.6
-and contains approximately 97,000 lines of changes across 640 files from 30
-authors.
-
-Excluding auto-generated files, documentation and release tools, there were
-approximately 26,000 lines of changes to 400 .pm, .t, .c and .h files.
+=head1 Obituary
 
-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.21.7:
+XXX If any significant core contributor has died, we've added a short obituary
+here.
 
-Aaron Crane, Aristotle Pagaltzis, Chad Granum, Chris 'BinGOs' Williams, Craig
-A. Berry, Dagfinn Ilmari Manns├Ñker, Daniel Dragan, David Mitchell, Eric
-Herman, Father Chrysostomos, H.Merijn Brand, Hugo van der Sanden, James
-Raspass, Jarkko Hietaniemi, Jim Cromie, Karen Etheridge, Karl Williamson, kmx,
-Lukas Mai, Matthew Horsfall, Max Maischein, Petr P├¡sa┼Ö, Ricardo Signes,
-Shlomi Fish, Steffen M├╝ller, Steve Hay, Sullivan Beck, syber, Todd Rinaldo,
-Tony Cook.
-
-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.21.7..HEAD
 
 =head1 Reporting Bugs
 
index d8b7650..93cbe7d 100644 (file)
@@ -307,7 +307,7 @@ utils : $(utils1) $(utils2) $(utils3) $(utils4) $(utils5)
 extra.pods : miniperl
        @ @extra_pods.com
 
-PERLDELTA_CURRENT = [.pod]perl5217delta.pod
+PERLDELTA_CURRENT = [.pod]perl5218delta.pod
 
 $(PERLDELTA_CURRENT) : [.pod]perldelta.pod
        Copy/NoConfirm/Log $(MMS$SOURCE) $(PERLDELTA_CURRENT)
index b8e86c7..cc228fc 100644 (file)
@@ -1165,7 +1165,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\perl5217delta.pod
+       copy ..\pod\perldelta.pod ..\pod\perl5218delta.pod
        cd ..\win32
        $(PERLEXE) $(PL2BAT) $(UTILS)
        $(MINIPERL) -I..\lib ..\autodoc.pl ..
@@ -1261,7 +1261,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 \
-           perl5217delta.pod perlaix.pod perlamiga.pod perlandroid.pod \
+           perl5218delta.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 \
index 12e4cf3..401f00b 100644 (file)
@@ -1443,7 +1443,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\perl5217delta.pod
+       copy ..\pod\perldelta.pod ..\pod\perl5218delta.pod
        $(PERLEXE) $(PL2BAT) $(UTILS)
        $(MINIPERL) -I..\lib ..\autodoc.pl ..
        $(MINIPERL) -I..\lib ..\pod\perlmodlib.PL -q ..
@@ -1538,7 +1538,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 \
-           perl5217delta.pod perlaix.pod perlamiga.pod perlandroid.pod \
+           perl5218delta.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 \
index 3c3eca6..c053b37 100644 (file)
@@ -46,6 +46,7 @@ POD = perl.pod        \
        perl5215delta.pod       \
        perl5216delta.pod       \
        perl5217delta.pod       \
+       perl5218delta.pod       \
        perl561delta.pod        \
        perl56delta.pod \
        perl581delta.pod        \
@@ -185,6 +186,7 @@ MAN = perl.man      \
        perl5215delta.man       \
        perl5216delta.man       \
        perl5217delta.man       \
+       perl5218delta.man       \
        perl561delta.man        \
        perl56delta.man \
        perl581delta.man        \
@@ -324,6 +326,7 @@ HTML = perl.html    \
        perl5215delta.html      \
        perl5216delta.html      \
        perl5217delta.html      \
+       perl5218delta.html      \
        perl561delta.html       \
        perl56delta.html        \
        perl581delta.html       \
@@ -463,6 +466,7 @@ TEX = perl.tex      \
        perl5215delta.tex       \
        perl5216delta.tex       \
        perl5217delta.tex       \
+       perl5218delta.tex       \
        perl561delta.tex        \
        perl56delta.tex \
        perl581delta.tex        \