# HG changeset patch # User Stu Tomlinson # Date 1178760843 0 # Node ID c258cc89d19fc15c00881ea22e0918973a2cfc53 # Parent 8d94cf6880091c1b32409525f82948d28b1c8c12 Yahoo! system messages do not need escaping. The notify API takes care of that. diff -r 8d94cf688009 -r c258cc89d19f libpurple/protocols/yahoo/yahoo.c --- a/libpurple/protocols/yahoo/yahoo.c Thu May 10 01:33:20 2007 +0000 +++ b/libpurple/protocols/yahoo/yahoo.c Thu May 10 01:34:03 2007 +0000 @@ -922,9 +922,6 @@ if (!msg || !g_utf8_validate(msg, -1, NULL)) return; - /* TODO: Does this really need to be escaped? It seems like it doesn't. */ - escmsg = g_markup_escape_text(msg, -1); - prim = g_strdup_printf(_("Yahoo! system message for %s:"), me?me:purple_connection_get_display_name(gc)); purple_notify_info(NULL, NULL, prim, escmsg);