From 935bcc7ce47e64cac01f9c6f8a37ff9629c21102 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Mon, 24 Sep 2007 18:02:03 +0200 Subject: [PATCH] move Regs into tag.c --- tag.c | 6 ++++++ tag.h | 6 ------ 2 files changed, 6 insertions(+), 6 deletions(-) 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 -- 2.11.4.GIT