* nlsfuncs.cc (__set_lc_messages_from_win): Fix typo.
This commit is contained in:
parent
9008eb4041
commit
3d9e3644ee
|
@ -1,3 +1,7 @@
|
||||||
|
2010-02-09 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* nlsfuncs.cc (__set_lc_messages_from_win): Fix typo.
|
||||||
|
|
||||||
2010-02-09 Corinna Vinschen <corinna@vinschen.de>
|
2010-02-09 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* lc_msg.h: New file, fix a problem in locales with modifiers.
|
* lc_msg.h: New file, fix a problem in locales with modifiers.
|
||||||
|
|
|
@ -705,7 +705,7 @@ __set_lc_messages_from_win (const char *name,
|
||||||
c2 = strchr (c + 1, '@');
|
c2 = strchr (c + 1, '@');
|
||||||
/* Ignore @cjknarrow modifier since it's a very personal thing between
|
/* Ignore @cjknarrow modifier since it's a very personal thing between
|
||||||
Cygwin and newlib... */
|
Cygwin and newlib... */
|
||||||
if (c2 && !strcmp (c2, "@cjknarrow"))
|
if (c2 && strcmp (c2, "@cjknarrow"))
|
||||||
memmove (c, c2, strlen (c2) + 1);
|
memmove (c, c2, strlen (c2) + 1);
|
||||||
}
|
}
|
||||||
/* Now search in the alphabetically order lc_msg array for the
|
/* Now search in the alphabetically order lc_msg array for the
|
||||||
|
|
Loading…
Reference in New Issue