diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2007-12-11 17:46:06 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2007-12-11 17:46:06 +0100 |
commit | 15b2c85ea483376855f5ef4892812bf67428be2b (patch) | |
tree | 7a189f23cbcbebb168c468d9639b91e8c7021676 /src/core | |
parent | 061b0e5c580d9dc8f9d88be22fca66dfcf407a17 (diff) | |
download | weechat-15b2c85ea483376855f5ef4892812bf67428be2b.zip |
Added "dump_data" event, added dump of data in IRC plugin
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/weechat.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/weechat.c b/src/core/weechat.c index 3e4c8bd13..9d35b02b1 100644 --- a/src/core/weechat.c +++ b/src/core/weechat.c @@ -521,8 +521,10 @@ weechat_dump (int crash) plugin_print_log (); + hook_event_exec ("dump_data", NULL); + log_printf (""); - log_printf ("****** End of dump ******"); + log_printf ("****** End of WeeChat dump ******"); log_printf (""); } |