void
dofloat(Arg *arg)
{
- Client *c, *fc;
+ Client *c;
maximized = False;
else
ban(c);
}
- if(!(fc = sel) || !isvisible(fc))
- fc = getnext(clients);
- focus(fc);
+ if(!sel || !isvisible(sel))
+ focus(getnext(clients));
restack();
}
dotile(Arg *arg)
{
int h, i, n, w;
- Client *c, *fc;
+ Client *c;
maximized = False;
else
ban(c);
}
- if(!(fc = sel) || !isvisible(fc))
- fc = getnext(clients);
- focus(fc);
+ if(!sel || !isvisible(sel))
+ focus(getnext(clients));
restack();
}