1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-06 17:53:13 +02:00

Add optional plugin name for command /debug dump and signal "debug_dump"

This commit is contained in:
Sebastien Helleu
2010-09-17 16:12:41 +02:00
parent efcc5010b6
commit 8b26f3c953
27 changed files with 132 additions and 94 deletions
+5 -5
View File
@@ -117,9 +117,9 @@ debug_dump_cb (void *data, const char *signal, const char *type_data,
(void) data;
(void) signal;
(void) type_data;
(void) signal_data;
debug_dump (0);
if (!signal_data || (string_strcasecmp ((char *)signal_data, "core") == 0))
debug_dump (0);
return WEECHAT_RC_OK;
}
@@ -263,7 +263,7 @@ debug_windows_cb (void *data, const char *signal, const char *type_data,
void
debug_init ()
{
hook_signal (NULL, "debug_dump", debug_dump_cb, NULL);
hook_signal (NULL, "debug_buffer", debug_buffer_cb, NULL);
hook_signal (NULL, "debug_windows", debug_windows_cb, NULL);
hook_signal (NULL, "debug_dump", &debug_dump_cb, NULL);
hook_signal (NULL, "debug_buffer", &debug_buffer_cb, NULL);
hook_signal (NULL, "debug_windows", &debug_windows_cb, NULL);
}