diff options
Diffstat (limited to 'pod/perldelta.pod')
-rw-r--r-- | pod/perldelta.pod | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod index b4d4d217de..2ea923724c 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -1395,7 +1395,12 @@ your signed integers. See L<perlfunc/unpack>. (W) You used a backslash-character combination which is not recognized by Perl. This combination appears in an interpolated variable or a -C<'>-delimited regular expression. +C<'>-delimited regular expression. The character was understood literally. + +=item /%s/: Unrecognized escape \\%c in character class passed through + +(W) You used a backslash-character combination which is not recognized +by Perl inside character classes. The character was understood literally. =item /%s/ should probably be written as "%s" @@ -1773,7 +1778,7 @@ subvert Perl's population of %ENV for nefarious purposes. =item Unrecognized escape \\%c passed through (W) You used a backslash-character combination which is not recognized -by Perl. +by Perl. The character was understood literally. =item Unterminated attribute parameter in attribute list |