diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-07-26 23:00:05 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-07-26 23:00:05 +0000 |
commit | 476b6d7fa4b5e47b5f07431b8a1af05a17489040 (patch) | |
tree | 46e456059fd0f6bb99f79ccdab352e0a092aa238 /locale | |
parent | 9f4fa5bc33f7c116e35e700b6ad2a3f5ab16a405 (diff) | |
download | glibc-476b6d7fa4b5e47b5f07431b8a1af05a17489040.tar glibc-476b6d7fa4b5e47b5f07431b8a1af05a17489040.tar.gz glibc-476b6d7fa4b5e47b5f07431b8a1af05a17489040.tar.bz2 glibc-476b6d7fa4b5e47b5f07431b8a1af05a17489040.zip |
Update.
2000-07-26 Ulrich Drepper <drepper@redhat.com>
* libio/iofwide.c: Enable transliteration for conversion from wchar_t
by default.
* locale/C-ctype.c: Likewise.
* wcsmbs/wcsmbsload.c: Likewise.
Diffstat (limited to 'locale')
-rw-r--r-- | locale/C-ctype.c | 4 | ||||
-rw-r--r-- | locale/C-translit.h.in | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/locale/C-ctype.c b/locale/C-ctype.c index 66f2d21598..0b960d9b59 100644 --- a/locale/C-ctype.c +++ b/locale/C-ctype.c @@ -343,9 +343,9 @@ const char _nl_C_LC_CTYPE_width[256] = const struct locale_data _nl_C_LC_CTYPE = { _nl_C_name, - NULL, 0, 0, /* no file mapped */ + NULL, 0, 0, /* no file mapped */ UNDELETABLE, - 0, + 1, /* Enable transliteration by default. */ NULL, 66, { diff --git a/locale/C-translit.h.in b/locale/C-translit.h.in index e2f711ea59..4734789ecb 100644 --- a/locale/C-translit.h.in +++ b/locale/C-translit.h.in @@ -1,4 +1,4 @@ -/* Transliteration for the C locale. +/* Transliteration for the C locale. -*-C-*- Copyright (C) 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2000. |