This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
mktables: Put off removing the \N{BELL} conflict
authorKarl Williamson <public@khwilliamson.com>
Wed, 18 May 2011 18:44:44 +0000 (12:44 -0600)
committerKarl Williamson <public@khwilliamson.com>
Wed, 18 May 2011 19:01:03 +0000 (13:01 -0600)
Unicode 6.0 re-used the name BELL for a character other than what it
was traditionally for.  There is code in mktables to change the
treatment for 5.15, so that it wouldn't be forgotten.  But I'm thinking
that we might want to wait til 5.18 to change, and so I just changed it
to 5.17 instead.

lib/unicore/mktables

index a2a9d0c..e15a37e 100644 (file)
@@ -10270,7 +10270,7 @@ END
                             # http://www.unicode.org/versions/corrigendum8.html
             $fields[$BIDI] = "AL";
         }
-        elsif ($^V lt v5.15.0) { # For 5.16 will convert to use Unicode's name
+        elsif ($^V lt v5.17.0) { # For 5.18 will convert to use Unicode's name
             $fields[$CHARNAME] = "";
         }