Mercurial > pidgin
diff libpurple/protocols/myspace/message.c @ 18911:692b128fe74a
Conditionally-compile out debugging statements of escaping.
| author | Jeffrey Connelly <jaconnel@calpoly.edu> |
|---|---|
| date | Sun, 12 Aug 2007 23:16:53 +0000 |
| parents | c32fcdef2809 |
| children | d34e49d8fac7 |
line wrap: on
line diff
--- a/libpurple/protocols/myspace/message.c Sun Aug 12 20:22:18 2007 +0000 +++ b/libpurple/protocols/myspace/message.c Sun Aug 12 23:16:53 2007 +0000 @@ -75,8 +75,10 @@ g_string_append_c(gs, msg[i]); } } - + +#ifdef MSIM_DEBUG_ESCAPE purple_debug_info("msim", "msim_escape: msg=%s, ret=%s\n", msg, gs->str); +#endif return gs->str; } @@ -114,7 +116,9 @@ g_string_append_c(gs, replace); } +#ifdef MSIM_DEBUG_ESCAPE purple_debug_info("msim", "msim_unescape: msg=%s, ret=%s\n", msg, gs->str); +#endif return gs->str; }
