commit a973cfc33de765e9e840932ee625ea704f972861 parent f8d6b2ef91e74933b988b1807812de61b3bf8ccb Author: Kris Maglione <bsdaemon@wmii.de> Date: Fri, 2 Jun 2006 01:13:23 -0400 Removed useless goto Diffstat:
| cmd/wm/client.c | | | 7 | ++----- |
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git 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"); }