Mercurial > pidgin
changeset 18544:7cd39e4b241d
we don't put markup in the row data, so there's no need to escape this (fixes #1311, aka the O'Connor bug)
author | Nathan Walp <nwalp@pidgin.im> |
---|---|
date | Sat, 21 Jul 2007 02:10:34 +0000 |
parents | 84d184163805 |
children | 22ba51d40efa 3a6e9a57f8f3 |
files | pidgin/gtknotify.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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);