diff options
author | Karl Williamson <khw@cpan.org> | 2014-07-07 13:59:30 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2014-07-09 08:04:53 -0600 |
commit | 68886934460694116a2e488b07dbabb4ac7131be (patch) | |
tree | 5f1a7a6621253e56def9a5d64b6dd5b49309dcba /lib | |
parent | a17767184dd91d4cb8e0f020584a315c581d7b7a (diff) | |
download | perl-68886934460694116a2e488b07dbabb4ac7131be.tar.gz |
lib/locale.t: Fix debug statement
This was printing using the wrong function. It is a string, and should
use the string output function.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/locale.t | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/locale.t b/lib/locale.t index c8741c3842..31b40f91a3 100644 --- a/lib/locale.t +++ b/lib/locale.t @@ -917,12 +917,7 @@ foreach my $Locale (@Locale) { debug "is utf8 locale? = $is_utf8_locale\n"; - my $radix = localeconv()->{decimal_point}; - if ($radix !~ / ^ [[:ascii:]] + $/x) { - use bytes; - $radix = disp_chars(split "", $radix); - } - debug "radix = $radix\n"; + debug "radix = " . disp_str(localeconv()->{decimal_point}) . "\n"; if (! $is_utf8_locale) { use locale; |