From 87f8e8e71247d25b271a406fa68b50e91731417f Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Thu, 18 Jan 2018 15:52:50 -0700 Subject: [PATCH] locale.c: White-space only Outdent to compensate for previous patch removing several blocks --- locale.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/locale.c b/locale.c index bf1a0e0..98c4d70 100644 --- a/locale.c +++ b/locale.c @@ -388,21 +388,21 @@ S_set_numeric_radix(pTHX_ const bool use_locale) #if defined(USE_LOCALE_NUMERIC) && ( defined(HAS_LOCALECONV) \ || defined(HAS_NL_LANGINFO)) - const char * radix = (use_locale) - ? my_nl_langinfo(PERL_RADIXCHAR, FALSE) - /* FALSE => already in dest locale */ - : "."; + const char * radix = (use_locale) + ? my_nl_langinfo(PERL_RADIXCHAR, FALSE) + /* FALSE => already in dest locale */ + : "."; - sv_setpv(PL_numeric_radix_sv, radix); + sv_setpv(PL_numeric_radix_sv, radix); - /* If this is valid UTF-8 that isn't totally ASCII, and we are in - * a UTF-8 locale, then mark the radix as being in UTF-8 */ - if (is_utf8_non_invariant_string((U8 *) SvPVX(PL_numeric_radix_sv), + /* If this is valid UTF-8 that isn't totally ASCII, and we are in + * a UTF-8 locale, then mark the radix as being in UTF-8 */ + if (is_utf8_non_invariant_string((U8 *) SvPVX(PL_numeric_radix_sv), SvCUR(PL_numeric_radix_sv)) - && _is_cur_LC_category_utf8(LC_NUMERIC)) - { - SvUTF8_on(PL_numeric_radix_sv); - } + && _is_cur_LC_category_utf8(LC_NUMERIC)) + { + SvUTF8_on(PL_numeric_radix_sv); + } # ifdef DEBUGGING -- 1.8.3.1