diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-02-22 17:43:41 +0100 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-02-22 17:43:41 +0100 |
commit | 587100873a66e34251041678504a8c1e28410591 (patch) | |
tree | 2ea60a457951a9f21be2deaf0b29244d4cc7c5a9 /tag.c | |
parent | 27b0595af72060d7cc406639b6c53a854f0a3590 (diff) | |
download | dwm-587100873a66e34251041678504a8c1e28410591.tar dwm-587100873a66e34251041678504a8c1e28410591.tar.gz dwm-587100873a66e34251041678504a8c1e28410591.tar.bz2 |
renamed versatile into untiled
Diffstat (limited to 'tag.c')
-rw-r--r-- | tag.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |