diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-10-22 13:15:39 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-10-22 13:15:39 +0000 |
commit | 79077e6c14f0cd677dcb64896680dbda123b70a3 (patch) | |
tree | 213c691e602b5fc11f401b88faf3eca2b5b0448d /lib/bytes.pm | |
parent | ac5a684e91b96c66e134bedef4a18360ad57a796 (diff) | |
download | perl-79077e6c14f0cd677dcb64896680dbda123b70a3.tar.gz |
Make the overrides of built-ins in the bytes pragma use the new prototype _.
p4raw-id: //depot/perl@29078
Diffstat (limited to 'lib/bytes.pm')
-rw-r--r-- | lib/bytes.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/bytes.pm b/lib/bytes.pm index a8222794dd..b7fabbf359 100644 --- a/lib/bytes.pm +++ b/lib/bytes.pm @@ -1,6 +1,6 @@ package bytes; -our $VERSION = '1.02'; +our $VERSION = '1.03'; $bytes::hint_bits = 0x00000008; @@ -19,9 +19,9 @@ sub AUTOLOAD { Carp::croak("Undefined subroutine $AUTOLOAD called"); } -sub length ($); -sub chr ($); -sub ord ($); +sub length (_); +sub chr (_); +sub ord (_); sub substr ($$;$$); sub index ($$;$); sub rindex ($$;$); |