Removed useless goto

This commit is contained in:
Kris Maglione 2006-06-02 01:13:23 -04:00
parent f8d6b2ef91
commit a973cfc33d

View File

@ -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");
}