diff options
author | Karl Williamson <khw@cpan.org> | 2014-07-25 11:31:26 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2014-07-25 15:06:04 -0600 |
commit | 7ea906bb370ef79b0aee20cbb8768c72eb0d22c6 (patch) | |
tree | 9b856aacaba482e1cbea40448142c3b307b43206 /pod/perlop.pod | |
parent | 235c1d5fb08d2f9bf82de88220390de5210ac392 (diff) | |
download | perl-7ea906bb370ef79b0aee20cbb8768c72eb0d22c6.tar.gz |
perlop: Update text to reflect code changes
The warning message is no longer misleading, so no need to point out
anything about it.
Diffstat (limited to 'pod/perlop.pod')
-rw-r--r-- | pod/perlop.pod | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod index 0535bfd25e..52e109b767 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -1483,12 +1483,6 @@ the left with zeros to make three digits. For larger ordinals, either use C<\o{}>, or convert to something else, such as to hex and use C<\x{}> instead. -Having fewer than 3 digits may lead to a misleading warning message that says -that what follows is ignored. For example, C<"\128"> in the ASCII character set -is equivalent to the two characters C<"\n8">, but the warning C<Illegal octal -digit '8' ignored> will be thrown. If C<"\n8"> is what you want, you can -avoid this warning by padding your octal number with C<0>'s: C<"\0128">. - =item [8] Several constructs above specify a character by a number. That number |