diff options
author | Karl Williamson <khw@cpan.org> | 2016-01-06 13:00:37 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2016-01-06 13:05:36 -0700 |
commit | daa11682c468a8ad5d98ad3bd6aae8cc149a5b4c (patch) | |
tree | 31346a6ac056f00772d8a998e8cb565d8350ef52 /lib | |
parent | dc6dfd62197489a4c671a17a43d8555551b5446c (diff) | |
download | perl-daa11682c468a8ad5d98ad3bd6aae8cc149a5b4c.tar.gz |
mktables: Fix /l testing in re/uniprops.t
The utf8 locale testing was not getting done.
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 8635441d35..88d341f534 100644 --- a/lib/unicore/mktables +++ b/lib/unicore/mktables @@ -19637,7 +19637,7 @@ sub _test_break($$) { my @modifiers = qw(a aa d u i); if ($are_ctype_locales_available) { - push @modifiers, "l" if defined &find_utf8_ctype_locale; + push @modifiers, "l$utf8_locale" if defined $utf8_locale; # The /l modifier has C after it to indicate the locale to try push @modifiers, "lC"; |