diff options
author | Father Chrysostomos <sprout@cpan.org> | 2013-05-26 23:52:56 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2013-05-27 00:50:03 -0700 |
commit | 3c664d1afc10b66ae77d4c88690268489df218bb (patch) | |
tree | 8a2d04e973f0c0a8213fd90f559a7b5bc4380781 /pod | |
parent | a38411bceb52074d113f51ddc58ffef08890b976 (diff) | |
download | perl-3c664d1afc10b66ae77d4c88690268489df218bb.tar.gz |
perldiag: mark two deprecated entries with D
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perldiag.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 0f29f3e99b..05a21a138b 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -540,7 +540,7 @@ Check your control flow and number of arguments. =item "\B{" is deprecated; use "\B\{" or "\B[{]" instead in regex; marked by <-- HERE in m/%s/ -(W deprecated) Use of an unescaped "{" immediately following +(D deprecated) Use of an unescaped "{" immediately following a C<\b> or C<\B> is now deprecated so as to reserve its use for Perl itself in a future release. You can either precede the brace with a backslash, or enclose it in square brackets; the latter @@ -1310,7 +1310,7 @@ Perhaps you need to copy the value to a temporary, and repeat that. =item Character following "\c" must be ASCII -(F)(W deprecated, syntax) In C<\cI<X>>, I<X> must be an ASCII character. +(F)(D deprecated, syntax) In C<\cI<X>>, I<X> must be an ASCII character. It is planned to make this fatal in all instances in Perl v5.20. In the cases where it isn't fatal, the character this evaluates to is derived by exclusive or'ing the code point of this character with 0x40. |