Merge of cuix back in trunk

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4309 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
nattfodd 2006-08-08 21:11:20 +00:00
commit 8b75299729
12 changed files with 758 additions and 0 deletions

View file

@ -23,6 +23,9 @@
#include "module.h"
#include "textbuffer-view.h"
#include "utf8.h"
#ifdef HAVE_CUIX
#include "cuix.h"
#endif
typedef struct {
char *name;
@ -1319,6 +1322,9 @@ static int sig_check_linecache(void)
void textbuffer_view_init(void)
{
linecache_tag = g_timeout_add(LINE_CACHE_CHECK_TIME, (GSourceFunc) sig_check_linecache, NULL);
#ifdef HAVE_CUIX
cuix_active = 0;
#endif
}
void textbuffer_view_deinit(void)