changeset 9700:d6292978a704

[gaim-migrate @ 10559] Sean or Tim: Let me know if this is totally wrong. It looked reasonable to me. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sat, 07 Aug 2004 15:58:22 +0000
parents 267eab8f3fa4
children d9e6e172f94c
files ChangeLog src/gtkimhtml.c
diffstat 2 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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;