mirror of git://sourceware.org/git/glibc.git
[BZ #714]
2005-09-25 Ulrich Drepper <drepper@redhat.com> [BZ #714] * iconv/loop.c [!STORE_REST] (SINGLE): Correctly record number of left-over bytes and store them correctly. * iconvdata/tst-iconv6.c: New file. * iconvdata/Makefile (tests): Add tst-iconv6.
This commit is contained in:
parent
d3f70d6eb0
commit
2cf8a390dd
|
|
@ -1,3 +1,11 @@
|
||||||
|
2005-09-25 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
[BZ #714]
|
||||||
|
* iconv/loop.c [!STORE_REST] (SINGLE): Correctly record number of
|
||||||
|
left-over bytes and store them correctly.
|
||||||
|
* iconvdata/tst-iconv6.c: New file.
|
||||||
|
* iconvdata/Makefile (tests): Add tst-iconv6.
|
||||||
|
|
||||||
2005-09-24 Roland McGrath <roland@redhat.com>
|
2005-09-24 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/i386/signal.S: Removed, saved in ports repository.
|
* sysdeps/unix/sysv/i386/signal.S: Removed, saved in ports repository.
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,10 @@
|
||||||
2005-09-25 Ulrich Drepper <drepper@redhat.com>
|
2005-09-25 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* SUPPORTED (SUPPORTED-LOCALES): Add km_KH.
|
||||||
|
|
||||||
|
[BZ #826]
|
||||||
|
* locales/km_KH: New file.
|
||||||
|
|
||||||
* Makefile (LOCALES): Add zh_TW.EUC-TW.
|
* Makefile (LOCALES): Add zh_TW.EUC-TW.
|
||||||
|
|
||||||
2005-09-24 Ulrich Drepper <drepper@redhat.com>
|
2005-09-24 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
|
||||||
|
|
@ -222,6 +222,7 @@ kk_KZ.UTF-8/UTF-8 \
|
||||||
kk_KZ/PT154 \
|
kk_KZ/PT154 \
|
||||||
kl_GL.UTF-8/UTF-8 \
|
kl_GL.UTF-8/UTF-8 \
|
||||||
kl_GL/ISO-8859-1 \
|
kl_GL/ISO-8859-1 \
|
||||||
|
km_KH/UTF-8 \
|
||||||
kn_IN/UTF-8 \
|
kn_IN/UTF-8 \
|
||||||
ko_KR.EUC-KR/EUC-KR \
|
ko_KR.EUC-KR/EUC-KR \
|
||||||
ko_KR.UTF-8/UTF-8 \
|
ko_KR.UTF-8/UTF-8 \
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -12,11 +12,11 @@ static struct
|
||||||
const char *loc;
|
const char *loc;
|
||||||
} tests[] =
|
} tests[] =
|
||||||
{
|
{
|
||||||
{ (const char[]) { 0x8F, 0xA2, 0xAF }, 3, "ja_JP.eucJP" },
|
{ (const char[]) { 0x8F, 0xA2, 0xAF }, 3, "ja_JP.EUC-JP" },
|
||||||
{ (const char[]) { 0xD1, 0xA5 }, 2, "ja_JP.eucJP" },
|
{ (const char[]) { 0xD1, 0xA5 }, 2, "ja_JP.EUC-JP" },
|
||||||
{ (const char[]) { 0x8E, 0xA5 }, 2, "ja_JP.eucJP" },
|
{ (const char[]) { 0x8E, 0xA5 }, 2, "ja_JP.EUC-JP" },
|
||||||
{ (const char[]) { 0x8E, 0xA2, 0xA1, 0xA1 }, 4, "zh_TW.eucTW" },
|
{ (const char[]) { 0x8E, 0xA2, 0xA1, 0xA1 }, 4, "zh_TW.EUC-TW" },
|
||||||
{ (const char[]) { 0xA1, 0xA1 }, 2, "zh_TW.eucTW" },
|
{ (const char[]) { 0xA1, 0xA1 }, 2, "zh_TW.EUC-TW" },
|
||||||
{ (const char[]) { 0xE3, 0x80, 0x80 }, 3, "en_US.UTF-8" },
|
{ (const char[]) { 0xE3, 0x80, 0x80 }, 3, "en_US.UTF-8" },
|
||||||
{ (const char[]) { 0xC3, 0xA4 }, 2, "en_US.UTF-8" }
|
{ (const char[]) { 0xC3, 0xA4 }, 2, "en_US.UTF-8" }
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue