locale.cc (locale::locale(const char*)): Trivial cosmetic tweaks.

2002-11-24  Paolo Carlini  <pcarlini@unitus.it>

	* src/locale.cc (locale::locale(const char*)):
	Trivial cosmetic tweaks.

From-SVN: r59433
This commit is contained in:
Paolo Carlini 2002-11-24 19:48:35 +01:00 committed by Paolo Carlini
parent bdabc150ce
commit bbed24125e
2 changed files with 11 additions and 8 deletions

View File

@ -1,3 +1,8 @@
2002-11-24 Paolo Carlini <pcarlini@unitus.it>
* src/locale.cc (locale::locale(const char*)):
Trivial cosmetic tweaks.
2002-11-22 Laszlo Ersek <erseklaszlo@chello.hu>
Paolo Carlini <pcarlini@unitus.it>

View File

@ -208,9 +208,8 @@ namespace std
// different from LANG.
size_t __i = 0;
if (strcmp(__res, "C") == 0)
for (__i = 0;
__i < _S_categories_size + _S_extra_categories_size;
++__i)
for (; __i < _S_categories_size
+ _S_extra_categories_size; ++__i)
{
__env = getenv(_S_categories[__i]);
if (__env && strcmp(__env, "") != 0
@ -219,9 +218,8 @@ namespace std
break;
}
else
for (__i = 0;
__i < _S_categories_size + _S_extra_categories_size;
++__i)
for (; __i < _S_categories_size
+ _S_extra_categories_size; ++__i)
{
__env = getenv(_S_categories[__i]);
if (__env && strcmp(__env, "") != 0
@ -253,9 +251,9 @@ namespace std
if (!__env || strcmp(__env, "") == 0)
{
__str += _S_categories[__i];
__str += '=';
__str += "=";
__str += __res;
__str += ';';
__str += ";";
}
else if (strcmp(__env, "C") == 0
|| strcmp(__env, "POSIX") == 0)