# HG changeset patch # User Mark Doliner # Date 1246491740 0 # Node ID eb9edb1c36acfd5cb2b0464c38fab15b94f394ca # Parent f22b8f624a00d83020ad8f79c4c355f8eb2073ca Fix font size and font face in outgoing myspace messages. I think I broke this in December?! We were missing a space in the tag test, and so it was invalid xml, which caused parsing problems on the receiving end diff -r f22b8f624a00 -r eb9edb1c36ac libpurple/protocols/myspace/markup.c --- a/libpurple/protocols/myspace/markup.c Wed Jul 01 16:08:55 2009 +0000 +++ b/libpurple/protocols/myspace/markup.c Wed Jul 01 23:42:20 2009 +0000 @@ -541,10 +541,10 @@ tmpend = g_string_new(""); if (face != NULL) - g_string_append_printf(tmpbegin, "f='%s'", face); + g_string_append_printf(tmpbegin, " f='%s'", face); if (size != NULL) - g_string_append_printf(tmpbegin, "h='%d'", + g_string_append_printf(tmpbegin, " h='%d'", msim_point_to_height(session, msim_purple_size_to_point(session, atoi(size))));