From 733bb62a1e04206c836cf47df1c237421df98c5f Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 28 Apr 1998 17:18:24 +0000 Subject: [PATCH] Update. * stdlib/grouping.h: Accept ungrouped numbers even if locale defines grouping. --- ChangeLog | 3 +++ localedata/locales/de_DE | 4 ++-- stdlib/grouping.h | 7 ++++++- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1e518c7..5d05800 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 1998-04-28 Ulrich Drepper + * stdlib/grouping.h: Accept ungrouped numbers even if locale + defines grouping. + * intl/hash-string.h: Don't include values.h. * inet/Makefile (tests): Add tst-ether_aton. diff --git a/localedata/locales/de_DE b/localedata/locales/de_DE index c3e90eb..615a35e 100644 --- a/localedata/locales/de_DE +++ b/localedata/locales/de_DE @@ -2162,8 +2162,8 @@ END LC_MONETARY LC_NUMERIC decimal_point "<,>" -thousands_sep "" -grouping 0;0 +thousands_sep "<.>" +grouping 3;3 END LC_NUMERIC LC_TIME diff --git a/stdlib/grouping.h b/stdlib/grouping.h index deb7a15..71b89f9 100644 --- a/stdlib/grouping.h +++ b/stdlib/grouping.h @@ -1,5 +1,5 @@ /* Internal header for proving correct grouping in strings of numbers. - Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc. Contributed by Ulrich Drepper , 1995. The GNU C Library is free software; you can redistribute it and/or @@ -53,6 +53,11 @@ correctly_grouped_prefix (const STRING_TYPE *begin, const STRING_TYPE *end, while (cp >= begin && (wchar_t) *cp != thousands) --cp; + /* We allow the representation to contain no grouping at all even if + the locale specifies we can have grouping. */ + if (cp < begin) + return end; + if (end - cp == (int) *gp + 1) { /* This group matches the specification. */ -- 2.7.4