commit 0e453fb47bba360c923136fbba78a27549d976c1
parent f750cd9813c8a345d0443177aaed0f718871762e
Author: Anselm R. Garbe <garbeam@wmii.de>
Date: Thu, 13 Apr 2006 17:08:17 +0200
removed unnecessary debug output
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/cmd/wm/rule.c b/cmd/wm/rule.c
@@ -136,7 +136,6 @@ match(Client *c, const char *prop)
for(i = 0; i < rule.size; i++) {
Rule *r = rule.data[i];
if(r->is_valid && !regexec(&r->regex, prop, 1, &tmpregm, 0)) {
- fprintf(stderr, "[%d] c->class=%s c->tags=%s r->tags=%s\n", i, c->classinst, c->tags, r->tags);
if(!strncmp(r->tags, "~", 2))
c->floating = True;
else if(!strlen(c->tags) || !strncmp(c->tags, "nil", 4)) {