# HG changeset patch # User Mark Doliner # Date 1091894302 0 # Node ID d6292978a704dce48d93569992dfff7726615eed # Parent 267eab8f3fa4e5ba87331d7f1699d99fc9d99b5d [gaim-migrate @ 10559] Sean or Tim: Let me know if this is totally wrong. It looked reasonable to me. committer: Tailor Script diff -r 267eab8f3fa4 -r d6292978a704 ChangeLog --- a/ChangeLog Sat Aug 07 15:04:15 2004 +0000 +++ b/ChangeLog Sat Aug 07 15:58:22 2004 +0000 @@ -1,5 +1,11 @@ Gaim: The Pimpin' Penguin IM Client that's good for the soul! +version 0.82: + Bug Fixes: + * Fix the double screen names that sometimes appear when viewing text + from a Windows AIM user that was copy and pasted fromn another + conversation (Jon Oberheide) + version 0.81 (08/05/2004): New Features: * The autorecon plugin will somewhat remember state information(Yosef diff -r 267eab8f3fa4 -r d6292978a704 src/gtkimhtml.c --- a/src/gtkimhtml.c Sat Aug 07 15:04:15 2004 +0000 +++ b/src/gtkimhtml.c Sat Aug 07 15:58:22 2004 +0000 @@ -1739,6 +1739,7 @@ if (!g_ascii_strncasecmp(string, "!--", strlen ("!--"))) { gchar *e = strstr (string + strlen("!--"), "-->"); if (e) { + *type = -1; *len = e - string + strlen ("-->"); *tag = g_strndup (string + strlen ("!--"), *len - strlen ("!---->")); return TRUE;