summaryrefslogtreecommitdiff
path: root/finch
diff options
context:
space:
mode:
authorGary Kramlich <grim@reaperworld.com>2022-11-25 23:40:58 -0600
committerGary Kramlich <grim@reaperworld.com>2022-11-25 23:40:58 -0600
commit1ed57cd73e39cfa37d3d3dfa9501ecd5476f30d8 (patch)
treec70605b369a6ebfa3004a5073d5c1b4e0b1740f3 /finch
parenta484df61923c9c74d604151b8de730d5406d941d (diff)
downloadpidgin-1ed57cd73e39cfa37d3d3dfa9501ecd5476f30d8.tar.gz
Remove purple_markup_escape_text
This was originally added because g_markup_escape_text turns ' in to &apos; which isn't an element in HTML 4 and apparently it wasn't rendered right in IE7. Those days are long gone, so there's no reason we need this anymore. Testing Done: Compiled and ran the unit tests Reviewed at https://reviews.imfreedom.org/r/2096/
Diffstat (limited to 'finch')
-rw-r--r--finch/gntconv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/finch/gntconv.c b/finch/gntconv.c
index 40da2b145c..0d4b455f98 100644
--- a/finch/gntconv.c
+++ b/finch/gntconv.c
@@ -154,7 +154,7 @@ entry_key_pressed(GntWidget *w, FinchConv *ggconv)
}
else
{
- char *escape = purple_markup_escape_text((*text == '/' ? text + 1 : text), -1);
+ char *escape = g_markup_escape_text((*text == '/' ? text + 1 : text), -1);
purple_conversation_send(ggconv->active_conv, escape);
g_free(escape);
purple_idle_touch();