diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-05-18 12:44:44 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-05-18 13:01:03 -0600 |
commit | 10914c783fe2ea3ee73a870599f30cedb7de96d0 (patch) | |
tree | 29c9ed23c9fe8071d962cfa686b70af0a30c9450 /lib | |
parent | f0815dd4f7c009ef07738512627c674bae2dc95c (diff) | |
download | perl-10914c783fe2ea3ee73a870599f30cedb7de96d0.tar.gz |
mktables: Put off removing the \N{BELL} conflict
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.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/unicore/mktables | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/unicore/mktables b/lib/unicore/mktables index a2a9d0c724..e15a37e9db 100644 --- a/lib/unicore/mktables +++ b/lib/unicore/mktables @@ -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] = ""; } |