diff options
Diffstat (limited to 'gnu/usr.bin/perl/cpan/Encode/Unicode/Unicode.pm')
-rw-r--r-- | gnu/usr.bin/perl/cpan/Encode/Unicode/Unicode.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/perl/cpan/Encode/Unicode/Unicode.pm b/gnu/usr.bin/perl/cpan/Encode/Unicode/Unicode.pm index f71567c6196..6b35cb7566a 100644 --- a/gnu/usr.bin/perl/cpan/Encode/Unicode/Unicode.pm +++ b/gnu/usr.bin/perl/cpan/Encode/Unicode/Unicode.pm @@ -4,7 +4,7 @@ use strict; use warnings; no warnings 'redefine'; -our $VERSION = do { my @r = ( q$Revision: 2.7 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r }; +our $VERSION = do { my @r = ( q$Revision: 2.9 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r }; use XSLoader; XSLoader::load( __PACKAGE__, $VERSION ); @@ -42,7 +42,7 @@ for my $name ( } => __PACKAGE__; } -use base qw(Encode::Encoding); +use parent qw(Encode::Encoding); sub renew { my $self = shift; @@ -52,7 +52,7 @@ sub renew { return $clone; } -# There used to be a perl implemntation of (en|de)code but with +# There used to be a perl implementation of (en|de)code but with # XS version is ripe, perl version is zapped for optimal speed *decode = \&decode_xs; |