diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | db.h | 1 | ||||
-rw-r--r-- | dlfcn.h | 1 | ||||
-rw-r--r-- | locale/C-messages.c | 4 |
4 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 6d97ab7b59..2324aeb5be 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,11 @@ Sat Jul 20 07:15:33 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> ($(libdir)/libc.so): Remove dep on libcrypt.so$(libcrypt.so-version). * Makefile (subdirs): Remove crypt. +Fri Jul 19 15:45:20 1996 Ulrich Drepper <drepper@cygnus.com> + + * locale/C-messages.c (_nl_C_LC_MESSAGES): Add missing Kleene + operator to yesexpr and noexpr string. + Fri Jul 19 15:10:37 1996 David Mosberger-Tang <davidm@azstarnet.com> * sunrpc/xdr_mem.c (xdrmem_putlong): Don't cast LP to int32 (the diff --git a/db.h b/db.h new file mode 100644 index 0000000000..a04f7746ef --- /dev/null +++ b/db.h @@ -0,0 +1 @@ +#include <db/db.h> diff --git a/dlfcn.h b/dlfcn.h new file mode 100644 index 0000000000..92804a1c1c --- /dev/null +++ b/dlfcn.h @@ -0,0 +1 @@ +#include <elf/dlfcn.h> diff --git a/locale/C-messages.c b/locale/C-messages.c index c6ce5b758d..b5fcd199ca 100644 --- a/locale/C-messages.c +++ b/locale/C-messages.c @@ -25,8 +25,8 @@ const struct locale_data _nl_C_LC_MESSAGES = NULL, 0, /* no file mapped */ 4, { - { string: "[yY][[:alpha:]]" }, - { string: "[nN][[:alpha:]]" }, + { string: "[yY][[:alpha:]]*" }, + { string: "[nN][[:alpha:]]*" }, { string: "" }, { string: "" } } |