# HG changeset patch # User Stu Tomlinson # Date 1180006723 0 # Node ID da6e87c14cea8838c00b325723da60e111c07341 # Parent 513ee58e730587da5f8eca478b0368f5806001b8 Un-break the API so the next release doesn't have to be 3.0.0 :) Removal of the debug timestamp preference caused Bad Things(tm) to happen when I accidentally tried running Pidgin 2.0.0 with libpurple 2.0.1. diff -r 513ee58e7305 -r da6e87c14cea libpurple/debug.c --- a/libpurple/debug.c Thu May 24 11:12:15 2007 +0000 +++ b/libpurple/debug.c Thu May 24 11:38:43 2007 +0000 @@ -183,4 +183,12 @@ void purple_debug_init(void) { + purple_prefs_add_none("/purple/debug"); + + /* + * This pref is obsolete and no longer referenced anywhere. It only + * survives here because it would be an API break if we removed it. + * Remove this when we get to 3.0.0 :) + */ + purple_prefs_add_bool("/purple/debug/timestamps", TRUE); }