# HG changeset patch # User Michael Shkutkov # Date 1183143416 0 # Node ID d1e7c8015308fa103ab0ce6dae8106e732db0cf4 # Parent b246ffeb47560da94619973e88205de0f0e698a0 using
as end of line instead of '\n' in QIP logger. With this change History plugin works fine diff -r b246ffeb4756 -r d1e7c8015308 libpurple/plugins/log_reader.c --- a/libpurple/plugins/log_reader.c Fri Jun 29 18:03:53 2007 +0000 +++ b/libpurple/plugins/log_reader.c Fri Jun 29 18:56:56 2007 +0000 @@ -2035,7 +2035,7 @@ if (line[0] != '\n' && line[0] != '\r') { g_string_append(formatted, line); - g_string_append_c(formatted, '\n'); + g_string_append(formatted, "
"); } line = ++c; }