UTF8 tr/// fixes from Inaba Hiroto.
[p5sagit/p5-mst-13.2.git] / lib / utf8.pm
index 6d6c0eb..f9055b5 100644 (file)
@@ -4,6 +4,8 @@ if (ord('A') != 193) { # make things more pragmatic for EBCDIC folk
 
 $utf8::hint_bits = 0x00800000;
 
+our $VERSION = '1.00';
+
 sub import {
     $^H |= $utf8::hint_bits;
     $enc{caller()} = $_[1] if $_[1];
@@ -55,7 +57,7 @@ rather than UTF-8).
 
 Enabling the C<utf8> pragma has the following effects:
 
-=over
+=over 4
 
 =item *
 
@@ -77,6 +79,8 @@ of byte semantics.
        @chars = split //, $data;       # splits characters
     }
 
+=back
+
 =head1 SEE ALSO
 
 L<perlunicode>, L<bytes>