diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-12-19 04:25:14 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-12-19 04:25:14 +0000 |
commit | 8a7455e70db36c00281a31f60e899d6b424e732b (patch) | |
tree | 1079ef4e925d41bf3770d511f91e0848a7188ce0 /stdio-common/vfprintf.c | |
parent | 2e5e031d50fb2fbf58d08f398b58d3ea0ddc4be0 (diff) | |
download | glibc-8a7455e70db36c00281a31f60e899d6b424e732b.tar.gz glibc-8a7455e70db36c00281a31f60e899d6b424e732b.tar.xz glibc-8a7455e70db36c00281a31f60e899d6b424e732b.zip |
Update.
2003-12-18 Ulrich Drepper <drepper@redhat.com> * stdio-common/printf_fp.c: Add support to use alternative decimal digits. * stdio-common/vfprintf.c (vfprintf): Pass use_outdigits flags to __printf_fp. Patch by Hamed Malek <hamed@bamdad.org>.
Diffstat (limited to 'stdio-common/vfprintf.c')
-rw-r--r-- | stdio-common/vfprintf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/stdio-common/vfprintf.c b/stdio-common/vfprintf.c index 94fd37e5e4..b84107ab6f 100644 --- a/stdio-common/vfprintf.c +++ b/stdio-common/vfprintf.c @@ -817,6 +817,7 @@ vfprintf (FILE *s, const CHAR_T *format, va_list ap) .group = group, \ .pad = pad, \ .extra = 0, \ + .i18n = use_outdigits, \ .wide = sizeof (CHAR_T) != 1 }; \ \ if (is_long_double) \ |