diff --git a/tag.c b/tag.c index db46eadd..51a87b62 100644 --- a/tag.c +++ b/tag.c @@ -28,6 +28,12 @@ extern Client *sel; /* global client list */ +typedef struct +{ + regex_t *propregex; + regex_t *tagregex; +} Regs; + static Regs *regs = NULL; /** This function returns the index of diff --git a/tag.h b/tag.h index 20005720..055cc172 100644 --- a/tag.h +++ b/tag.h @@ -41,10 +41,4 @@ UICB_PROTO(uicb_tag_prev_selected); UICB_PROTO(uicb_tag_viewnext); UICB_PROTO(uicb_tag_viewprev); -typedef struct -{ - regex_t *propregex; - regex_t *tagregex; -} Regs; - #endif