# HG changeset patch # User Mark Doliner # Date 1052019138 0 # Node ID d579d5367836418a6de07eca2d22ff3e8ec477e3 # Parent ead927e2543fa5b0d7704662544ff434a61a4fa7 [gaim-migrate @ 5666] When you "get info" for AIM now, and someone has their info set to "http://google.com" (and not "http://google.com the link will now be clickable. The function I changed is used by irc, gg, jabber, toc, and zephyr, so I'm not sure what side affects this might have. It should all be good though. If anyone thinks this should be reverted, feel free. Oh, and I'll be really busy with exams for the next 9 or so days. committer: Tailor Script diff -r ead927e2543f -r d579d5367836 src/dialogs.c --- a/src/dialogs.c Sun May 04 00:17:15 2003 +0000 +++ b/src/dialogs.c Sun May 04 03:32:18 2003 +0000 @@ -2402,8 +2402,11 @@ gtk_imhtml_append_text(GTK_IMHTML(b->text), info, -1, options); va_start(ap, info); - while ((more_info = va_arg(ap, char *)) != NULL) - gtk_imhtml_append_text(GTK_IMHTML(b->text), more_info, -1, options); + while ((more_info = va_arg(ap, char *)) != NULL) { + gchar *linkifyinated = linkify_text(more_info); + gtk_imhtml_append_text(GTK_IMHTML(b->text), linkifyinated, -1, options); + g_free(linkifyinated); + } va_end(ap); if (away)