X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=client.c;h=adf422e9934c800a39b946e3d95b80736f4b521d;hb=2c6be7239f932121b9e4526b01b957fcefc8345a;hp=c4b0941a996b753e665e7abc41ecc91f8548df22;hpb=9fdd2cd1a9dbe9b533fab9a8a98b9849dc4c7b59;p=dwm.git diff --git a/client.c b/client.c index c4b0941..adf422e 100644 --- a/client.c +++ b/client.c @@ -1,8 +1,4 @@ -/* © 2006-2007 Anselm R. Garbe - * © 2006-2007 Sander van Dijk - * © 2007 Premysl Hruby - * © 2007 Szabolcs Nagy - * See LICENSE file for license details. */ +/* See LICENSE file for copyright and license details. */ #include "dwm.h" #include #include @@ -131,7 +127,7 @@ detach(Client *c) { void focus(Client *c) { - if( !c && selscreen || c && !isvisible(c)) + if((!c && selscreen)|| (c && !isvisible(c))) for(c = stack; c && !isvisible(c); c = c->snext); if(sel && sel != c) { grabbuttons(sel, False);