X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/e6cbe9c11e88537d74eb094ba5844f71ee57f268..c53980cddcee8afd13ea793134ed3ddf5dbef0e3:/draw.c 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(); }