JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
prepared 0.3
[dwm.git] / draw.c
diff --git a/draw.c b/draw.c
index ec0e964..de4bdb0 100644 (file)
--- a/draw.c
+++ b/draw.c
@@ -8,7 +8,7 @@
 #include <string.h>
 #include <X11/Xlocale.h>
 
-/* 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();
 }