1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-29 14:26:39 +02:00

trigger: reorder internal trigger vars

This commit is contained in:
Sebastien Helleu
2014-02-05 08:16:57 +01:00
parent a03653273c
commit f8ffe9d590
2 changed files with 200 additions and 200 deletions
+4 -4
View File
@@ -76,10 +76,6 @@ struct t_trigger
/* internal vars */
/* regular expressions with their replacement text */
int regex_count; /* number of regex */
struct t_trigger_regex *regex; /* array of regex */
/* hooks */
int hooks_count; /* number of hooks */
struct t_hook **hooks; /* array of hooks (signal, ...) */
@@ -88,6 +84,10 @@ struct t_trigger
int hook_running; /* 1 if one hook callback is running */
char *hook_print_buffers; /* buffers (for hook_print only) */
/* regular expressions with their replacement text */
int regex_count; /* number of regex */
struct t_trigger_regex *regex; /* array of regex */
/* links to other triggers */
struct t_trigger *prev_trigger; /* link to previous trigger */
struct t_trigger *next_trigger; /* link to next trigger */