Blame SOURCES/perl-Unicode-String-2.09-utf8doc.patch

6c4d86
--- Unicode-String-2.09/README		2005-10-25 13:56:28.000000000 +0100
6c4d86
+++ Unicode-String-2.09/README.utf8	2010-02-18 09:11:45.235669975 +0000
6c4d86
@@ -18,8 +18,8 @@
6c4d86
    o Depreciation because of perl's own utf8 support.
6c4d86
 
6c4d86
    o Composition/decomposition support:
6c4d86
-     $u->decomp;  # will decomposite as much as possible:  "å"  --> "a°"
6c4d86
-     $u->comp;    # will composite as much as possible:    "a°" --> "å"
6c4d86
+     $u->decomp;  # will decomposite as much as possible:  "å"  --> "a°"
6c4d86
+     $u->comp;    # will composite as much as possible:    "a°" --> "å"
6c4d86
 
6c4d86
      Need separate routines or a special argument to distinguish
6c4d86
      between compatibility decomposition and canonical decomposition.
6c4d86
@@ -64,7 +64,7 @@
6c4d86
    print $u->latin1;
6c4d86
    print $u->hex;
6c4d86
 
6c4d86
-   print latin1("naïve\n")->utf8;
6c4d86
+   print utf8("naïve\n")->latin1;
6c4d86
 
6c4d86
    use Unicode::CharName qw(uname);
6c4d86
    print uname(ord('$')), "\n";
6c4d86
@@ -73,7 +73,7 @@
6c4d86
 
6c4d86
 COPYRIGHT
6c4d86
 
6c4d86
-  © 1997-2000,2005 Gisle Aas. All rights reserved.
6c4d86
+  © 1997-2000,2005 Gisle Aas. All rights reserved.
6c4d86
 
6c4d86
 This library is free software; you can redistribute it and/or modify
6c4d86
 it under the same terms as Perl itself.
6c4d86
--- Unicode-String-2.09/String.pm	2005-10-26 09:13:10.000000000 +0100
6c4d86
+++ Unicode-String-2.09/String.pm.utf8	2010-02-18 09:11:45.234427359 +0000
6c4d86
@@ -597,7 +597,7 @@
6c4d86
 current value is returned.
6c4d86
 
6c4d86
 To illustrate the encodings we show how the 2 character sample string
6c4d86
-of "µm" (micro meter) is encoded for each one.
6c4d86
+of "µm" (micro meter) is encoded for each one.
6c4d86
 
6c4d86
 =over 4
6c4d86
 
6c4d86
@@ -606,7 +606,7 @@
6c4d86
 =item $us->utf32be( $newval )
6c4d86
 
6c4d86
 The string passed should be in the UTF-32 encoding with bytes in big
6c4d86
-endian order.  The sample "µm" is "\0\0\0\xB5\0\0\0m" in this encoding.
6c4d86
+endian order.  The sample "µm" is "\0\0\0\xB5\0\0\0m" in this encoding.
6c4d86
 
6c4d86
 Alternative names for this method are utf32() and ucs4().
6c4d86
 
6c4d86
@@ -615,14 +615,14 @@
6c4d86
 =item $us->utf32le( $newval )
6c4d86
 
6c4d86
 The string passed should be in the UTF-32 encoding with bytes in little
6c4d86
-endian order.  The sample "µm" is is "\xB5\0\0\0m\0\0\0" in this encoding.
6c4d86
+endian order.  The sample "µm" is is "\xB5\0\0\0m\0\0\0" in this encoding.
6c4d86
 
6c4d86
 =item $us->utf16be
6c4d86
 
6c4d86
 =item $us->utf16be( $newval )
6c4d86
 
6c4d86
 The string passed should be in the UTF-16 encoding with bytes in big
6c4d86
-endian order. The sample "µm" is "\0\xB5\0m" in this encoding.
6c4d86
+endian order. The sample "µm" is "\0\xB5\0m" in this encoding.
6c4d86
 
6c4d86
 Alternative names for this method are utf16() and ucs2().
6c4d86
 
6c4d86
@@ -635,7 +635,7 @@
6c4d86
 =item $us->utf16le( $newval )
6c4d86
 
6c4d86
 The string passed should be in the UTF-16 encoding with bytes in
6c4d86
-little endian order.  The sample "µm" is is "\xB5\0m\0" in this
6c4d86
+little endian order.  The sample "µm" is is "\xB5\0m\0" in this
6c4d86
 encoding.  This is the encoding used by the Microsoft Windows API.
6c4d86
 
6c4d86
 If the string passed to utf16le() starts with the Unicode byte order
6c4d86
@@ -646,14 +646,14 @@
6c4d86
 
6c4d86
 =item $us->utf8( $newval )
6c4d86
 
6c4d86
-The string passed should be in the UTF-8 encoding. The sample "µm" is
6c4d86
+The string passed should be in the UTF-8 encoding. The sample "µm" is
6c4d86
 "\xC2\xB5m" in this encoding.
6c4d86
 
6c4d86
 =item $us->utf7
6c4d86
 
6c4d86
 =item $us->utf7( $newval )
6c4d86
 
6c4d86
-The string passed should be in the UTF-7 encoding. The sample "µm" is
6c4d86
+The string passed should be in the UTF-7 encoding. The sample "µm" is
6c4d86
 "+ALU-m" in this encoding.
6c4d86
 
6c4d86
 
6c4d86
@@ -673,7 +673,7 @@
6c4d86
 
6c4d86
 =item $us->latin1( $newval )
6c4d86
 
6c4d86
-The string passed should be in the ISO-8859-1 encoding. The sample "µm" is
6c4d86
+The string passed should be in the ISO-8859-1 encoding. The sample "µm" is
6c4d86
 "\xB5m" in this encoding.
6c4d86
 
6c4d86
 Characters outside the "\x00" .. "\xFF" range are simply removed from
6c4d86
@@ -688,7 +688,7 @@
6c4d86
 The string passed should be plain ASCII where each Unicode character
6c4d86
 is represented by the "U+XXXX" string and separated by a single space
6c4d86
 character.  The "U+" prefix is optional when setting the value.  The
6c4d86
-sample "µm" is "U+00b5 U+006d" in this encoding.
6c4d86
+sample "µm" is "U+00b5 U+006d" in this encoding.
6c4d86
 
6c4d86
 =back
6c4d86