<div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Feb 11, 2019 at 2:50 PM Piotr Caban <<a href="mailto:piotr.caban@gmail.com">piotr.caban@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi Daniel,<br>
<br>
On 2/10/19 7:55 PM, Daniel Lehman wrote:<br>
> --- a/dlls/msvcrt/wcs.c<br>
> +++ b/dlls/msvcrt/wcs.c<br>
> @@ -2491,6 +2491,9 @@ int CDECL MSVCRT__towupper_l(MSVCRT_wint_t c, MSVCRT__locale_t locale)<br>
>           return c;<br>
>       }<br>
>   <br>
> +    if(c == 0x131) /* special case for small dotless i */<br>
> +        return c;<br>
> +<br>
>       return toupperW(c);<br>
You shouldn't need to handle this case separately. You have even added a <br>
test that shows that LCMapStringEx(..., LCMAP_UPPERCASE, buffer <br>
containing 0x131, ...) should not change 0x131 character. It should be <br>
fixed somewhere else (if needed toupperW may be changed to e.g. <br>
LCMapString call).<br></blockquote><div><br></div><div>One possible option is to apply changes in make_unicode, there is a staging patch that changes generated tables directly, which is obviously not ideal.</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
Thanks,<br>
Piotr<br>
<br>
<br>
</blockquote></div></div>