# HG changeset patch # User Eric Warmenhoven # Date 990738756 0 # Node ID c81f3dd0e58e120182d28b7b90027b33926ca69e # Parent dedcd9e6f3e86cb5655440bec2bec19190ca773a [gaim-migrate @ 1899] don't linkify urls for non-html-enabled protocols committer: Tailor Script diff -r dedcd9e6f3e8 -r c81f3dd0e58e src/conversation.c --- a/src/conversation.c Thu May 24 21:08:24 2001 +0000 +++ b/src/conversation.c Thu May 24 21:12:36 2001 +0000 @@ -772,12 +772,12 @@ return; } - if (general_options & OPT_GEN_SEND_LINKS) - linkify_text(buf); - buf2 = g_malloc(limit); if (c->gc->prpl->options & OPT_PROTO_HTML) { + if (general_options & OPT_GEN_SEND_LINKS) + linkify_text(buf); + if (font_options & OPT_FONT_BOLD) { g_snprintf(buf2, limit, "%s", buf); strcpy(buf, buf2);