diff plugins/autorecon.c @ 11256:bb0d7b719af2

[gaim-migrate @ 13430] I give you regex filtering in the debug window. We keep a buffer of all the text, so when unpausing all the messages that were output when paused will be displayed, as well as when you change the filter. This _should_ be alright on systems that don't have regex.h but I haven't gotten anyone to test it recently, if it's busted, just #ifdef HAVE_REGEX_H it. committer: Tailor Script <tailor@pidgin.im>
author Gary Kramlich <grim@reaperworld.com>
date Sat, 13 Aug 2005 22:09:34 +0000
parents 50224ac8184d
children a32bf50ee5d1
line wrap: on
line diff
--- a/plugins/autorecon.c	Sat Aug 13 18:40:40 2005 +0000
+++ b/plugins/autorecon.c	Sat Aug 13 22:09:34 2005 +0000
@@ -227,8 +227,6 @@
 static gboolean
 plugin_load(GaimPlugin *plugin)
 {
-	gaim_debug_register_category("autorecon");
-
 	/* this was the suggested way to override a single function of the
 	real ui ops. However, there's a mild concern of having more than one
 	bit of code making a new ui op call-through copy. If plugins A and B
@@ -280,8 +278,6 @@
 	g_free(new_ops);
 	old_ops = new_ops = NULL;
 
-	gaim_debug_unregister_category("autorecon");
-
 	return TRUE;
 }