# HG changeset patch # User Luke Schierer # Date 1079464776 0 # Node ID 622fd4e800b49d9312fda63f75487b2ea531846d # Parent a94f46d89b611e01e09f570ca5f753f3ef215573 [gaim-migrate @ 9185] at my instistance, marv was kind enough to fix the br tag thing committer: Tailor Script diff -r a94f46d89b61 -r 622fd4e800b4 src/protocols/yahoo/util.c --- a/src/protocols/yahoo/util.c Mon Mar 15 23:32:39 2004 +0000 +++ b/src/protocols/yahoo/util.c Tue Mar 16 19:19:36 2004 +0000 @@ -632,6 +632,8 @@ g_string_append(dest, "\033[4m"); } else if (!g_ascii_strncasecmp(&src[i+1], "/U", sublen)) { g_string_append(dest, "\033[x4m"); + } else if (!g_ascii_strncasecmp(&src[i+1], "BR", sublen)) { + g_string_append_c(dest, '\n'); } else if (!g_ascii_strncasecmp(&src[i+1], "/BODY", sublen)) { /* mmm, tags. *BURP* */ } else if (!g_ascii_strncasecmp(&src[i+1], "/FONT", sublen) && g_queue_peek_tail(tags)) {