diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-19 06:36:46 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-19 06:36:46 +0000 |
commit | 657b208b434818aa5e54d68b0a8ad320c0252adf (patch) | |
tree | 4401717ed5a673623e6e7463374901e296af48fc /lib/bytes.pm | |
parent | 8058d7abf600e878367b422ec507695e4ac6f25a (diff) | |
download | perl-657b208b434818aa5e54d68b0a8ad320c0252adf.tar.gz |
s/byte/bytes/g remnants
p4raw-id: //depot/perl@5134
Diffstat (limited to 'lib/bytes.pm')
-rw-r--r-- | lib/bytes.pm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/bytes.pm b/lib/bytes.pm index 0424e1778d..e8ab16f1bd 100644 --- a/lib/bytes.pm +++ b/lib/bytes.pm @@ -1,4 +1,4 @@ -package byte; +package bytes; sub import { $^H |= 0x00000008; @@ -9,7 +9,7 @@ sub unimport { } sub AUTOLOAD { - require "byte_heavy.pl"; + require "bytes_heavy.pl"; goto &$AUTOLOAD; } @@ -20,21 +20,21 @@ __END__ =head1 NAME -byte - Perl pragma to force byte semantics rather than character semantics +bytes - Perl pragma to force byte semantics rather than character semantics =head1 SYNOPSIS - use byte; - no byte; + use bytes; + no bytes; =head1 DESCRIPTION WARNING: The implementation of Unicode support in Perl is incomplete. Expect sudden and unannounced changes! -The C<use byte> pragma disables character semantics for the rest of the -lexical scope in which it appears. C<no byte> can be used to reverse -the effect of C<use byte> within the current lexical scope. +The C<use bytes> pragma disables character semantics for the rest of the +lexical scope in which it appears. C<no bytes> can be used to reverse +the effect of C<use bytes> within the current lexical scope. Perl normally assumes character semantics in the presence of character data (i.e. data that has come from a source that has |