comparison 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
comparison
equal deleted inserted replaced
10347:4d2ecbb139a0 10348:64bc206c7473
5027 "<B><FONT %s COLOR=\"#777777\">%s</FONT></B>", 5027 "<B><FONT %s COLOR=\"#777777\">%s</FONT></B>",
5028 sml_attrib, message); 5028 sml_attrib, message);
5029 5029
5030 gtk_imhtml_append_text(GTK_IMHTML(gtkconv->imhtml), buf, 0); 5030 gtk_imhtml_append_text(GTK_IMHTML(gtkconv->imhtml), buf, 0);
5031 } else if (flags & GAIM_MESSAGE_RAW) { 5031 } else if (flags & GAIM_MESSAGE_RAW) {
5032 g_snprintf(buf, BUF_LONG, "%s", message); 5032 gtk_imhtml_append_text(GTK_IMHTML(gtkconv->imhtml), message, 0);
5033
5034 gtk_imhtml_append_text(GTK_IMHTML(gtkconv->imhtml), buf, 0);
5035 } else { 5033 } else {
5036 char *new_message = g_memdup(message, length); 5034 char *new_message = g_memdup(message, length);
5037 char *who_escaped = (who ? g_markup_escape_text(who, strlen(who)) : g_strdup("")); 5035 char *who_escaped = (who ? g_markup_escape_text(who, strlen(who)) : g_strdup(""));
5038 5036
5039 if (flags & GAIM_MESSAGE_WHISPER) { 5037 if (flags & GAIM_MESSAGE_WHISPER) {