diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-04-30 00:32:43 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-04-30 00:32:43 +0000 |
commit | 02c66840524d73f1fac9efe152ed046418263a8f (patch) | |
tree | 033c6e62e2654202a5aca4b492f138f53950ab0c | |
parent | 679f5a56f969432e8d69a831ba942edae6cb7420 (diff) | |
download | glibc-02c66840524d73f1fac9efe152ed046418263a8f.tar.gz |
Update.
1998-04-30 Ulrich Drepper <drepper@cygnus.com>
* locale/programs/localedef.c: Recognize repertoire-map option.
1998-04-29 Ulrich Drepper <drepper@cygnus.com>
* locale/programs/linereader.c (get_toplvl_escape): Fix typo in
converting non-hex numbers.
Patch by Won Kyu Park <bird@bird.kitel.co.kr>.
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | locale/programs/localedef.c | 4 |
2 files changed, 13 insertions, 1 deletions
@@ -1,3 +1,13 @@ +1998-04-30 Ulrich Drepper <drepper@cygnus.com> + + * locale/programs/localedef.c: Recognize repertoire-map option. + +1998-04-29 Ulrich Drepper <drepper@cygnus.com> + + * locale/programs/linereader.c (get_toplvl_escape): Fix typo in + converting non-hex numbers. + Patch by Won Kyu Park <bird@bird.kitel.co.kr>. + 1998-04-23 07:31 H.J. Lu <hjl@gnu.org> * resolv/inet_addr.c (inet_aton): Use __strtoul_internal to diff --git a/locale/programs/localedef.c b/locale/programs/localedef.c index 3b8a7a54d5..32437c12f5 100644 --- a/locale/programs/localedef.c +++ b/locale/programs/localedef.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995. @@ -101,6 +101,8 @@ static const struct argp_option options[] = { "inputfile", 'i', "FILE", 0, N_("Source definitions are found in FILE") }, { "code-set-name", 'u', "NAME", OPTION_HIDDEN, N_("Specify code set for mapping ISO 10646 elements") }, + { "repertoire-map", 'u', NAME, 0, + N_("file containing mapping from symbolic names to UCS4 values") }, { NULL, 0, NULL, 0, N_("Output control:") }, { "force", 'c', NULL, 0, |