# HG changeset patch # User Nathan Walp # Date 1184983834 0 # Node ID 7cd39e4b241de42b54f2d3c2fe3f871e94c4f711 # Parent 84d1841638057eeebac2ea703c4f863c6327aac1 we don't put markup in the row data, so there's no need to escape this (fixes #1311, aka the O'Connor bug) diff -r 84d184163805 -r 7cd39e4b241d pidgin/gtknotify.c --- a/pidgin/gtknotify.c Sun Jul 15 22:09:03 2007 +0000 +++ b/pidgin/gtknotify.c Sat Jul 21 02:10:34 2007 +0000 @@ -672,7 +672,7 @@ for (j = 1; j < col_num; j++) { GValue v; - char *escaped = g_markup_escape_text(g_list_nth_data(row, j - 1), -1); + char *escaped = g_list_nth_data(row, j - 1); v.g_type = 0; g_value_init(&v, G_TYPE_STRING);