X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=blobdiff_plain;f=draw.c;h=de4bdb0e4feb377d2a3803d8c9076d35f7ebd9dd;hp=ec0e96415b1599b40b50e56b201b6c813f75a612;hb=18be893b660025985508d6fcf5c9abdf42ce9929;hpb=e6cbe9c11e88537d74eb094ba5844f71ee57f268 diff --git a/draw.c b/draw.c index ec0e964..de4bdb0 100644 --- a/draw.c +++ b/draw.c @@ -8,7 +8,7 @@ #include #include -/* static functions */ +/* static */ static void drawborder(void) @@ -90,14 +90,14 @@ drawtext(const char *text, Bool invert, Bool border) } } -/* extern functions */ +/* extern */ void drawall() { Client *c; - for(c = clients; c; c = getnext(c->next)) + for(c = clients; c; c = getnext(c->next, tsel)) drawtitle(c); drawstatus(); }