summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-02-19 06:33:49 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-02-19 06:33:49 +0000
commit8058d7abf600e878367b422ec507695e4ac6f25a (patch)
tree532a05dfd24d4fd343743294e4c48d2112ceba1f /lib
parent66558a1012141f943df65dc612575097c38aed90 (diff)
downloadperl-8058d7abf600e878367b422ec507695e4ac6f25a.tar.gz
rename byte:: to bytes::
p4raw-id: //depot/perl@5133
Diffstat (limited to 'lib')
-rw-r--r--lib/bytes.pm (renamed from lib/byte.pm)0
-rw-r--r--lib/bytes_heavy.pl (renamed from lib/byte_heavy.pl)0
-rw-r--r--lib/charnames.pm4
-rw-r--r--lib/utf8.pm2
4 files changed, 3 insertions, 3 deletions
diff --git a/lib/byte.pm b/lib/bytes.pm
index 0424e1778d..0424e1778d 100644
--- a/lib/byte.pm
+++ b/lib/bytes.pm
diff --git a/lib/byte_heavy.pl b/lib/bytes_heavy.pl
index ec0558561d..ec0558561d 100644
--- a/lib/byte_heavy.pl
+++ b/lib/bytes_heavy.pl
diff --git a/lib/charnames.pm b/lib/charnames.pm
index 817b4c559e..ff9d5ea891 100644
--- a/lib/charnames.pm
+++ b/lib/charnames.pm
@@ -30,8 +30,8 @@ sub charnames {
die "Unknown charname '$name'" unless @off;
my $ord = hex substr $txt, $off[0] - 4, 4;
- if ($^H & 0x8) { # "use byte" in effect?
- use byte;
+ if ($^H & 0x8) { # "use bytes" in effect?
+ use bytes;
return chr $ord if $ord <= 255;
my $hex = sprintf '%X=0%o', $ord, $ord;
my $fname = substr $txt, $off[0] + 2, $off[1] - $off[0] - 2;
diff --git a/lib/utf8.pm b/lib/utf8.pm
index d9e9becdda..3098fe21bd 100644
--- a/lib/utf8.pm
+++ b/lib/utf8.pm
@@ -70,6 +70,6 @@ of byte semantics.
=head1 SEE ALSO
-L<perlunicode>, L<byte>
+L<perlunicode>, L<bytes>
=cut