Re: [PATCH v2 0/1] MR4617: xml2: Allow encoding name "ISO8859-1".
7 Dec
2023
7 Dec
'23
1:12 p.m.
Instead of the changes to libs/xml/encoding.c, just do below the changes in dlls/msxml3/main.c ``` --- a/dlls/msxml3/main.c +++ b/dlls/msxml3/main.c @@ -311,6 +311,7 @@ static void init_char_encoders(void) } encoder[] = { { "gbk", gbk_to_utf8, utf8_to_gbk }, + { "iso8859-1", win1252_to_utf8, utf8_to_win1252 }, { "windows-1250", win1250_to_utf8, utf8_to_win1250 }, { "windows-1251", win1251_to_utf8, utf8_to_win1251 }, { "windows-1252", win1252_to_utf8, utf8_to_win1252 }, ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/4617#note_55341
742
Age (days ago)
742
Last active (days ago)
0 comments
1 participants
participants (1)
-
Vijay Kiran Kamuju (@infyquest)