summaryrefslogtreecommitdiff
path: root/src/gui/gui-buffer.h
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2008-09-24 19:39:17 +0200
committerSebastien Helleu <flashcode@flashtux.org>2008-09-24 19:39:17 +0200
commitace2d20e33da6bd22d08f0cbcf53c85036bece43 (patch)
tree229c2d6e3930866fdffe1b9c430820d33f2b861e /src/gui/gui-buffer.h
parent0fd3f8b6eb4e0643f583be150c9c47c479f0ef64 (diff)
downloadweechat-ace2d20e33da6bd22d08f0cbcf53c85036bece43.zip
Fix /upgrade when there is one buffer for all IRC servers
Diffstat (limited to 'src/gui/gui-buffer.h')
-rw-r--r--src/gui/gui-buffer.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/gui-buffer.h b/src/gui/gui-buffer.h
index dc8c6b887..9e1a245f8 100644
--- a/src/gui/gui-buffer.h
+++ b/src/gui/gui-buffer.h
@@ -146,6 +146,7 @@ struct t_gui_buffer
/* highlight settings for buffer */
char *highlight_words; /* list of words to highlight */
+ char *highlight_tags; /* tags to highlight */
int highlight_tags_count; /* number of tags to highlight */
/* (if 0, any tag is highlighted) */
char **highlight_tags_array; /* tags to highlight */
@@ -202,6 +203,10 @@ extern void gui_buffer_set_nicklist (struct t_gui_buffer *buffer,
extern void gui_buffer_set_nicklist_case_sensitive (struct t_gui_buffer * buffer,
int case_sensitive);
extern void gui_buffer_set_nick (struct t_gui_buffer *buffer, const char *new_nick);
+extern void gui_buffer_set_highlight_words (struct t_gui_buffer *buffer,
+ const char *new_highlight_words);
+extern void gui_buffer_set_highlight_tags (struct t_gui_buffer *buffer,
+ const char *new_highlight_tags);
extern void gui_buffer_set (struct t_gui_buffer *buffer, const char *property,
void *value);
extern struct t_gui_buffer *gui_buffer_search_main ();