diff options
author | Karl Williamson <khw@cpan.org> | 2014-06-02 14:49:30 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2014-06-05 12:23:02 -0600 |
commit | d6ded95025185cb1ec8ca3ba5879cab881d8b180 (patch) | |
tree | 2d5d8e027167706f5a25f1456331ce3e189f1232 /numeric.c | |
parent | e9efacb9548c04c657ed5e5320168a87934aec52 (diff) | |
download | perl-d6ded95025185cb1ec8ca3ba5879cab881d8b180.tar.gz |
Add parameters to "use locale"
This commit allows one to specify to enable locale-awareness for only a
specified subset of the locale categories. Thus you could make a
section of code LC_MESSAGES aware, with no locale-awareness for the
other categories.
Diffstat (limited to 'numeric.c')
-rw-r--r-- | numeric.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -528,7 +528,7 @@ Perl_grok_numeric_radix(pTHX_ const char **sp, const char *send) PERL_ARGS_ASSERT_GROK_NUMERIC_RADIX; - if (IN_SOME_LOCALE_FORM) { + if (IN_LC(LC_NUMERIC)) { DECLARE_STORE_LC_NUMERIC_SET_TO_NEEDED(); if (PL_numeric_radix_sv) { STRLEN len; @@ -860,7 +860,7 @@ Perl_my_atof(pTHX_ const char* s) { DECLARE_STORE_LC_NUMERIC_SET_TO_NEEDED(); - if (PL_numeric_radix_sv && IN_SOME_LOCALE_FORM) { + if (PL_numeric_radix_sv && IN_LC(LC_NUMERIC)) { const char *standard = NULL, *local = NULL; bool use_standard_radix; |