From a973cfc33de765e9e840932ee625ea704f972861 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Fri, 2 Jun 2006 01:13:23 -0400 Subject: [PATCH] Removed useless goto --- cmd/wm/client.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/cmd/wm/client.c b/cmd/wm/client.c index 2007d882..76c95e32 100644 --- a/cmd/wm/client.c +++ b/cmd/wm/client.c @@ -879,12 +879,9 @@ match_tags(Client *c, const char *prop) void apply_rules(Client *c) { - if(!def.tagrules) - goto Fallback; + if(def.tagrules) + match_tags(c, c->props); - match_tags(c, c->props); - -Fallback: if(!strlen(c->tags)) apply_tags(c, "nil"); }