summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-10-15 07:46:24 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-10-15 07:46:24 +0000
commit45447e0de895cbfedb52c0fe32f88c2291b06536 (patch)
treecb2dfead7c456a25fc692dff676ca6facc5b8e77 /pod
parent0f38926bbb8f61974f71662cfb90af18d05c1f1b (diff)
parent0dfe9c83689186a0e3a524a49bf51fc000daba95 (diff)
downloadperl-45447e0de895cbfedb52c0fe32f88c2291b06536.tar.gz
integrate cfgperl contents into mainline
p4raw-id: //depot/perl@4387
Diffstat (limited to 'pod')
-rw-r--r--pod/perldelta.pod9
-rw-r--r--pod/perldiag.pod7
2 files changed, 13 insertions, 3 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index 3ff77cc1c4..6fb3807a88 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -1413,7 +1413,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"
@@ -1791,7 +1796,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
diff --git a/pod/perldiag.pod b/pod/perldiag.pod
index 11758e0e88..a6a723cc86 100644
--- a/pod/perldiag.pod
+++ b/pod/perldiag.pod
@@ -110,7 +110,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"