# HG changeset patch # User Evan Schoenberg # Date 1211335012 0 # Node ID a7c09c653558b45a817aa68e4b32a773cc38f360 # Parent 9d331ad0a8dce7c74c0928b830d32e246b667972 Don't put a space in front of the code if there is no text to go before it. diff -r 9d331ad0a8dc -r a7c09c653558 libpurple/protocols/jabber/message.c --- a/libpurple/protocols/jabber/message.c Wed May 21 01:49:03 2008 +0000 +++ b/libpurple/protocols/jabber/message.c Wed May 21 01:56:52 2008 +0000 @@ -411,7 +411,7 @@ } if(code) - code_txt = g_strdup_printf(_(" (Code %s)"), code); + code_txt = g_strdup_printf(_("%s(Code %s)"), (text ? " " : ""), code); if(!jm->error) jm->error = g_strdup_printf("%s%s", text ? text : "",