move Regs into tag.c

This commit is contained in:
Julien Danjou 2007-09-24 18:02:03 +02:00
parent 256717c792
commit 935bcc7ce4
2 changed files with 6 additions and 6 deletions

6
tag.c
View File

@ -28,6 +28,12 @@
extern Client *sel; /* global client list */ extern Client *sel; /* global client list */
typedef struct
{
regex_t *propregex;
regex_t *tagregex;
} Regs;
static Regs *regs = NULL; static Regs *regs = NULL;
/** This function returns the index of /** This function returns the index of

6
tag.h
View File

@ -41,10 +41,4 @@ UICB_PROTO(uicb_tag_prev_selected);
UICB_PROTO(uicb_tag_viewnext); UICB_PROTO(uicb_tag_viewnext);
UICB_PROTO(uicb_tag_viewprev); UICB_PROTO(uicb_tag_viewprev);
typedef struct
{
regex_t *propregex;
regex_t *tagregex;
} Regs;
#endif #endif