diff src/gtkconv.c @ 10348:64bc206c7473

[gaim-migrate @ 11562] Ability to read sub-statuses from ~/.gaim/status.xml. We don't actually WRITE these to the file yet, so this doesn't do anything. Also a few other minor changes elsewhere. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 12 Dec 2004 23:57:52 +0000
parents bbf738a0ce7b
children 393750603513
line wrap: on
line diff
--- a/src/gtkconv.c	Sun Dec 12 18:20:17 2004 +0000
+++ b/src/gtkconv.c	Sun Dec 12 23:57:52 2004 +0000
@@ -5029,9 +5029,7 @@
 
 		gtk_imhtml_append_text(GTK_IMHTML(gtkconv->imhtml), buf, 0);
 	} else if (flags & GAIM_MESSAGE_RAW) {
-		g_snprintf(buf, BUF_LONG, "%s", message);
-
-		gtk_imhtml_append_text(GTK_IMHTML(gtkconv->imhtml), buf, 0);
+		gtk_imhtml_append_text(GTK_IMHTML(gtkconv->imhtml), message, 0);
 	} else {
 		char *new_message = g_memdup(message, length);
 		char *who_escaped = (who ? g_markup_escape_text(who, strlen(who)) : g_strdup(""));