diff options
author | Karl Williamson <public@khwilliamson.com> | 2014-02-05 22:06:02 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2014-02-05 22:17:56 -0700 |
commit | 32d028130217347dcbe6859b420b505b89a30d9d (patch) | |
tree | 0e3af9e55a6d64bb1bff2b68416294160245f115 /pod | |
parent | 9b8f4e9212208b42402a7e6c029025cc8a6ae4db (diff) | |
download | perl-32d028130217347dcbe6859b420b505b89a30d9d.tar.gz |
Make a literal "{" fatal after \b and \B in regexes
These have been deprecated since v5.14.
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perldiag.pod | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index d913fa6d73..29f1703328 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -6162,12 +6162,10 @@ you can write it as C<push(@tied_array,())> to avoid this warning. (F) The "use" keyword is recognized and executed at compile time, and returns no useful value. See L<perlmod>. -=item Use "%c" instead of "\c{" +=item Use "%s" instead of "%s" -(F) The C<\cI<X>> construct is intended to be a way to specify -non-printable characters. You used it with a C<"{"> which evaluates to -C<";">, which is printable. On ASCII platforms, just use a semi-colon -or a backslash-semi-colon without the C<"\c">. +(F) The second listed construct is no longer legal. Use the first one +instead. =item Use of assignment to $[ is deprecated |