# HG changeset patch # User Tim Ringenbach # Date 1084732542 0 # Node ID eb3c59b0a16c3c0ea97d18b0c38408739d86ea98 # Parent c60f82d78dea2009017ced579f8d8d93545c27f5 [gaim-migrate @ 9728] This makes characters we can't convert to iso-8859-1 turn into ?'s instead of unicode escape things like \x{xxxx}. I decided this was slightly less ugly, but it still sucks. It only happens for status messages and group names and the like, btw. committer: Tailor Script diff -r c60f82d78dea -r eb3c59b0a16c src/protocols/yahoo/util.c --- a/src/protocols/yahoo/util.c Sun May 16 17:46:27 2004 +0000 +++ b/src/protocols/yahoo/util.c Sun May 16 18:35:42 2004 +0000 @@ -52,7 +52,7 @@ to_codeset = "ISO-8859-1"; - ret = g_convert_with_fallback(str, strlen(str), to_codeset, "UTF-8", NULL, NULL, NULL, NULL); + ret = g_convert_with_fallback(str, strlen(str), to_codeset, "UTF-8", "?", NULL, NULL, NULL); if (ret) return ret; else