diff options
author | Florian Ragwitz <rafl@debian.org> | 2010-03-29 19:59:30 +0200 |
---|---|---|
committer | Jesse Vincent <jesse@bestpractical.com> | 2010-03-29 14:02:42 -0400 |
commit | 208f012aa184134b9abfe8ba1bf8f2ae28539908 (patch) | |
tree | 7d2dc4ef2925e3a640299b64a66411ef6fb392da | |
parent | dd2abc632434eff525555290a39fd04aebd5c580 (diff) | |
download | perl-208f012aa184134b9abfe8ba1bf8f2ae28539908.tar.gz |
Document removal of -P in perldelta.v5.12.0-RC1
Also trim some trailing whitespace.
-rw-r--r-- | pod/perl5120delta.pod | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/pod/perl5120delta.pod b/pod/perl5120delta.pod index 5e203beb02..c00f33b416 100644 --- a/pod/perl5120delta.pod +++ b/pod/perl5120delta.pod @@ -29,7 +29,7 @@ for C<our $VERSION = ...> and similar constructs. E.g. There are several advantages to this: -=over +=over =item * @@ -117,7 +117,7 @@ Extension modules can now cleanly hook into the Perl parser to define new kinds of keyword-headed expression and compound statement. The syntax following the keyword is defined entirely by the extension. This allow a completely non-Perl sublanguage to be parsed inline, with the -correct ops cleanly generated. +correct ops cleanly generated. See L<perlapi/PL_keyword_plugin> for the mechanism. The Perl core source distribution also includes a new module @@ -495,6 +495,11 @@ EOF type. To better match all other flow control statements, C<foreach> may no longer be used as an attribute. +=item * + +Perl's command-line switch "-P", which was deprecated in version 5.10.0, has +now been removed. + =back @@ -2069,7 +2074,7 @@ because it's beyond the limit of representation. This uses a new warnings category: "imprecision". -=item * +=item * C<lc>, C<uc>, C<lcfirst>, and C<ucfirst> warn when passed undef. @@ -2308,7 +2313,7 @@ to gcc's search path. =item * F<h2xs> no longer incorrectly treats enum values like macros. -It also now handles C++ style comments (C<//>) properly in enums. +It also now handles C++ style comments (C<//>) properly in enums. =item * |