From 18882508158b151e2cb8a1d965aee6edc73ce844 Mon Sep 17 00:00:00 2001 From: HanzZ Date: Tue, 27 Sep 2011 21:16:59 +0200 Subject: [PATCH] don't use markup_linkify --- backends/libpurple/main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/backends/libpurple/main.cpp b/backends/libpurple/main.cpp index 9d0c39a0..c61f7a8e 100644 --- a/backends/libpurple/main.cpp +++ b/backends/libpurple/main.cpp @@ -1012,15 +1012,15 @@ static void conv_write_im(PurpleConversation *conv, const char *who, const char // Escape HTML characters. char *newline = purple_strdup_withhtml(msg); - char *strip, *xhtml, *xhtml_linkified; + char *strip, *xhtml; purple_markup_html_to_xhtml(newline, &xhtml, &strip); - xhtml_linkified = spectrum_markup_linkify(xhtml); +// xhtml_linkified = spectrum_markup_linkify(xhtml); std::string message_(strip); - std::string xhtml_(xhtml_linkified); + std::string xhtml_(xhtml); g_free(newline); g_free(xhtml); - g_free(xhtml_linkified); +// g_free(xhtml_linkified); g_free(strip); // AIM and XMPP adds ... here...