Subject: | NFKC("\x{2000}") produces "\x20\x05" on some perls >= 5.11.2 |
Hi. Sometimes, NFKC("\x{2000}") produces an extra "\x05" in the output.
This problem does seem to be isolated to some platforms. It has been observed with U::N 1.03
running some amd64 operating system; I'm not sure whether it also occurs with U::N 1.05.
Please find a test case attached.
This problem does seem to be isolated to some platforms. It has been observed with U::N 1.03
running some amd64 operating system; I'm not sure whether it also occurs with U::N 1.05.
Please find a test case attached.
Subject: | perl-5.11.2.t |
use strict;
use utf8;
no warnings 'utf8';
use Test::More tests => 1;
use Unicode::Normalize();
is( Unicode::Normalize::NFKC("\x{2000}"), " ", 'NFKC of U+2000' );