renamed versatile into untiled

This commit is contained in:
Anselm R. Garbe
2007-02-22 17:43:41 +01:00
parent 27b0595af7
commit 587100873a
9 changed files with 51 additions and 51 deletions

4
tag.c
View File

@ -12,7 +12,7 @@
typedef struct {
const char *prop;
const char *tags;
Bool isversatile;
Bool isuntiled;
} Rule;
typedef struct {
@ -83,7 +83,7 @@ settags(Client *c, Client *trans) {
ch.res_name ? ch.res_name : "", c->name);
for(i = 0; i < nrules; i++)
if(regs[i].propregex && !regexec(regs[i].propregex, prop, 1, &tmp, 0)) {
c->isversatile = rule[i].isversatile;
c->isuntiled = rule[i].isuntiled;
for(j = 0; regs[i].tagregex && j < ntags; j++) {
if(!regexec(regs[i].tagregex, tags[j], 1, &tmp, 0)) {
matched = True;