diff options
author | Christian Kirsch <ck@held.mind.de> | 2000-08-09 19:05:17 +0200 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-09 20:41:18 +0000 |
commit | 68d47915e40dc6ab5050a2c749c177f42d1374ff (patch) | |
tree | d36d124197e33f9efacd14800e22b38b1df13714 /sv.c | |
parent | c1576c9fc988b85e987fb11c0534fc990dbd98a8 (diff) | |
download | perl-68d47915e40dc6ab5050a2c749c177f42d1374ff.tar.gz |
(The fix did work but was not right, retracted in #6573)
Subject: [ID 20000809.003] setlocale(LC_NUMERIC...) produces different results in 5.005 and 5.6
Message-Id: <20000809170517.A25389@held>
p4raw-id: //depot/perl@6559
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -6563,12 +6563,8 @@ Perl_sv_vcatpvfn(pTHX_ SV *sv, const char *pat, STRLEN patlen, va_list *args, SV *--eptr = '#'; *--eptr = '%'; - { - RESTORE_NUMERIC_STANDARD(); - (void)sprintf(PL_efloatbuf, eptr, nv); - RESTORE_NUMERIC_LOCAL(); - } - + (void)sprintf(PL_efloatbuf, eptr, nv); + eptr = PL_efloatbuf; elen = strlen(PL_efloatbuf); break; |