99eaf946d6
OBS-URL: https://build.opensuse.org/package/show/Base:System/bash?expand=0&rev=0e684b6d69ca471a3edec76de2eeecc1
33 lines
623 B
Diff
33 lines
623 B
Diff
--- builtins/printf.def
|
|
+++ builtins/printf.def 2006-07-27 15:11:19.000000000 +0000
|
|
@@ -47,6 +47,7 @@ error occurs.
|
|
$END
|
|
|
|
#include <config.h>
|
|
+#include <locale.h>
|
|
|
|
#include "../bashtypes.h"
|
|
|
|
@@ -529,12 +530,20 @@ printf_builtin (list)
|
|
case 'A':
|
|
#endif
|
|
{
|
|
- char *f;
|
|
+ char *f, *lce = getenv("LC_NUMERIC"), *lcl = setlocale(LC_NUMERIC, NULL);
|
|
floatmax_t p;
|
|
|
|
p = getfloatmax ();
|
|
f = mklong (start, FLOATMAX_CONV, sizeof(FLOATMAX_CONV) - 1);
|
|
+
|
|
+ if (lce && lcl)
|
|
+ setlocale(LC_NUMERIC, lce);
|
|
+
|
|
PF (f, p);
|
|
+
|
|
+ if (lce && lcl)
|
|
+ setlocale(LC_NUMERIC, lcl);
|
|
+
|
|
break;
|
|
}
|
|
|