Jinoh Kang (@iamahuman) commented about dlls/gdi32/text.c:
+ case ISO3_CHARSET: + case ISO4_CHARSET: + case ISO10_CHARSET: + case CELTIC_CHARSET: + /* FIXME: These have no place here, but because x11drv + enumerates fonts with these (made up) charsets some apps + might use them and then the FIXME below would become + annoying. Now we could pick the intended codepage for + each of these, but since it's broken anyway we'll just + use CP_ACP and hope it'll go away... + */ + cp = CP_ACP; + break; + + default: + FIXME("Can't find codepage for charset %d\n", charset); If we're worried about fixme spam, should we just have it be emitted once?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/6385#note_87714