New XS::APItest's for sv_peek based on my DDumper work
[p5sagit/p5-mst-13.2.git] / ext / Encode / Byte / Byte.pm
index a163c92..3ea9035 100644 (file)
@@ -1,9 +1,11 @@
 package Encode::Byte;
+use strict;
+use warnings;
 use Encode;
-our $VERSION = do { my @r = (q$Revision: 1.20 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
+our $VERSION = do { my @r = ( q$Revision: 2.3 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r };
 
 use XSLoader;
-XSLoader::load('Encode::Byte',$VERSION);
+XSLoader::load( __PACKAGE__, $VERSION );
 
 1;
 __END__
@@ -15,7 +17,7 @@ Encode::Byte - Single Byte Encodings
 =head1 SYNOPSIS
 
     use Encode qw/encode decode/; 
-    $greek = encode("iso-885-7", $utf8);   # loads Encode::Byte implicitly
+    $greek = encode("iso-8859-7", $utf8);  # loads Encode::Byte implicitly
     $utf8  = decode("iso-8859-7", $greek); # ditto
 
 =head1 ABSTRACT
@@ -51,7 +53,7 @@ supported are as follows.
 
   # Vietnamese
   viscii
-  
+
   # all cp* are also available as ibm-*, ms-*, and windows-*
   # also see L<http://msdn.microsoft.com/workshop/author/dhtml/reference/charsets/charset4.asp>
 
@@ -78,7 +80,7 @@ supported are as follows.
   cp1251       WinCyrillic
   cp1252       WinLatin1
   cp1253       WinGreek
-  cp1254       WinTurkiskh
+  cp1254       WinTurkish
   cp1255       WinHebrew
   cp1256       WinArabic
   cp1257       WinBaltic
@@ -105,7 +107,6 @@ supported are as follows.
   # More vendor encodings
   AdobeStandardEncoding
   nextstep
-  gsm0338      # used in GSM handsets
   hp-roman8
 
 =head1 DESCRIPTION