X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=tag.c;h=b8539ac13234be1b7dd04587407b5562f7a7d64c;hb=5a13632afb970ce78957f9f80c9d3a4e4b55d5d1;hp=8f41d82907ed8adcbc1550c4f4811272d4a27b37;hpb=89b7f1503e147dbd9260ecd379ca3e31ddfed6ea;p=dwm.git diff --git a/tag.c b/tag.c index 8f41d82..b8539ac 100644 --- a/tag.c +++ b/tag.c @@ -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;