diff src/signals.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 ebb02ea3c789
children cb73483c9f63
line wrap: on
line diff
--- a/src/signals.c	Sat Aug 13 18:40:40 2005 +0000
+++ b/src/signals.c	Sat Aug 13 22:09:34 2005 +0000
@@ -577,8 +577,6 @@
 {
 	g_return_if_fail(instance_table == NULL);
 
-	gaim_debug_register_category("signals");
-
 	instance_table =
 		g_hash_table_new_full(g_direct_hash, g_direct_equal,
 							  NULL, (GDestroyNotify)destroy_instance_data);
@@ -591,8 +589,6 @@
 
 	g_hash_table_destroy(instance_table);
 	instance_table = NULL;
-
-	gaim_debug_unregister_category("signals");
 }
 
 /**************************************************************************