tag.c
changeset 830 5a4fd8fec414
parent 827 834476ae0f52
child 837 123231b9eb87
--- a/tag.c	Thu Feb 22 15:25:19 2007 +0100
+++ b/tag.c	Thu Feb 22 17:43:41 2007 +0100
@@ -12,7 +12,7 @@
 typedef struct {
 	const char *prop;
 	const char *tags;
-	Bool isversatile;
+	Bool isuntiled;
 } Rule;
 
 typedef struct {
@@ -83,7 +83,7 @@
 				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;