diff options
author | Roland McGrath <roland@gnu.org> | 1996-07-20 11:53:52 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-07-20 11:53:52 +0000 |
commit | 73f7f68ba36f904d85f56c0c3e602b707f132069 (patch) | |
tree | 1199d4a31d32bb30910738c8fe9f287675919120 /locale | |
parent | 22f87e0fa87762b244202e32500bda7085f5d287 (diff) | |
download | glibc-73f7f68ba36f904d85f56c0c3e602b707f132069.tar.gz glibc-73f7f68ba36f904d85f56c0c3e602b707f132069.tar.xz glibc-73f7f68ba36f904d85f56c0c3e602b707f132069.zip |
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.
Diffstat (limited to 'locale')
-rw-r--r-- | locale/C-messages.c | 4 |
1 files changed, 2 insertions, 2 deletions
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: "" } } |