diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2007-11-07 15:11:06 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2007-11-07 15:11:06 +0100 |
commit | 50889eaf3ba050133d958d562ee20a15855d0512 (patch) | |
tree | 2c9236e499256f16bc1d6da70e20a8b38da1b9ac /src/gui | |
parent | dc4f5ea2e2653776fa692a89d93cb44cd3adebff (diff) | |
download | weechat-50889eaf3ba050133d958d562ee20a15855d0512.zip |
Added print hooks (to catch any printf on buffers)
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/gui-chat.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/gui/gui-chat.c b/src/gui/gui-chat.c index c709b2e1a..8acca3456 100644 --- a/src/gui/gui-chat.c +++ b/src/gui/gui-chat.c @@ -30,6 +30,7 @@ #include "../core/weechat.h" #include "../core/wee-config.h" +#include "../core/wee-hook.h" #include "../core/wee-log.h" #include "../core/wee-string.h" #include "../core/wee-utf8.h" @@ -454,11 +455,12 @@ void gui_chat_printf_date (struct t_gui_buffer *buffer, time_t date, char *message, ...) { - static char buf[8192]; + char buf[8192]; time_t date_printed; int display_time; char *pos, *pos_prefix, *pos_tab, *pos_end; va_list argptr; + struct t_gui_line *ptr_line; if (gui_init_ok) { @@ -481,6 +483,8 @@ gui_chat_printf_date (struct t_gui_buffer *buffer, time_t date, date_printed = time (NULL); if (date <= 0) date = date_printed; + + ptr_line = buffer->last_line; pos = buf; while (pos) @@ -512,9 +516,15 @@ gui_chat_printf_date (struct t_gui_buffer *buffer, time_t date, pos_end[0] = '\0'; if (gui_init_ok) + { gui_chat_line_add (buffer, (display_time) ? date : 0, (display_time) ? date_printed : 0, pos_prefix, pos); + if (buffer->last_line) + hook_print_exec (buffer, buffer->last_line->date, + buffer->last_line->prefix, + buffer->last_line->message); + } else { if (pos_prefix) |