comparison src/conversation.c @ 1486:b72a33d07ce8

[gaim-migrate @ 1496] hola. my name is stupid. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 09 Feb 2001 01:53:32 +0000
parents 4c62ead808a2
children ba8e6e211af5
comparison
equal deleted inserted replaced
1485:5e00250ada1e 1486:b72a33d07ce8
1213 1213
1214 if (general_options & OPT_GEN_STRIP_HTML) { 1214 if (general_options & OPT_GEN_STRIP_HTML) {
1215 char *t1 = strip_html(what); 1215 char *t1 = strip_html(what);
1216 c->history = g_string_append(c->history, t1); 1216 c->history = g_string_append(c->history, t1);
1217 c->history = g_string_append(c->history, "\n"); 1217 c->history = g_string_append(c->history, "\n");
1218 g_free(what); 1218 g_free(t1);
1219 } else { 1219 } else {
1220 c->history = g_string_append(c->history, what); 1220 c->history = g_string_append(c->history, what);
1221 c->history = g_string_append(c->history, "<BR>\n"); 1221 c->history = g_string_append(c->history, "<BR>\n");
1222 } 1222 }
1223 1223