summaryrefslogtreecommitdiff
path: root/locale.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2014-07-07 14:42:11 -0600
committerKarl Williamson <khw@cpan.org>2014-07-09 08:04:53 -0600
commita9b8c0d859eab16104a6bea88f11ab111070b501 (patch)
treeed0912417eaae39bc820362ad26e4cf37b2c77f5 /locale.c
parent28c1bf331d7ac09dee248e6e1f7e52c8ed677e6a (diff)
downloadperl-a9b8c0d859eab16104a6bea88f11ab111070b501.tar.gz
locale.c: White-space only
Outdent because the previous commit removed the enclosing block.
Diffstat (limited to 'locale.c')
-rw-r--r--locale.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/locale.c b/locale.c
index 9388a252c4..57a553dda6 100644
--- a/locale.c
+++ b/locale.c
@@ -217,10 +217,10 @@ Perl_set_numeric_standard(pTHX)
* to our records (which could be wrong if some XS code has changed the
* locale behind our back) */
- setlocale(LC_NUMERIC, "C");
- PL_numeric_standard = TRUE;
- PL_numeric_local = isNAME_C_OR_POSIX(PL_numeric_name);
- set_numeric_radix();
+ setlocale(LC_NUMERIC, "C");
+ PL_numeric_standard = TRUE;
+ PL_numeric_local = isNAME_C_OR_POSIX(PL_numeric_name);
+ set_numeric_radix();
DEBUG_L(PerlIO_printf(Perl_debug_log,
"Underlying LC_NUMERIC locale now is C\n"));
@@ -236,10 +236,11 @@ Perl_set_numeric_local(pTHX)
* calling this directly. The macro avoids calling this routine if
* toggling isn't necessary according to our records (which could be wrong
* if some XS code has changed the locale behind our back) */
- setlocale(LC_NUMERIC, PL_numeric_name);
- PL_numeric_standard = isNAME_C_OR_POSIX(PL_numeric_name);
- PL_numeric_local = TRUE;
- set_numeric_radix();
+
+ setlocale(LC_NUMERIC, PL_numeric_name);
+ PL_numeric_standard = isNAME_C_OR_POSIX(PL_numeric_name);
+ PL_numeric_local = TRUE;
+ set_numeric_radix();
DEBUG_L(PerlIO_printf(Perl_debug_log,
"Underlying LC_NUMERIC locale now is %s\n",
PL_numeric_name));