JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
Added tag 1.9 for changeset a5567a0d30112822db2627a04a2e7aa3b6c38148
[dwm.git] / client.c
index 60f1cbe..c65a42b 100644 (file)
--- a/client.c
+++ b/client.c
@@ -246,7 +246,7 @@ manage(Window w, XWindowAttributes *wa) {
        XMapWindow(dpy, c->twin);
        if(isvisible(c))
                focus(c);
-       arrange(NULL);
+       arrange();
 }
 
 void
@@ -393,5 +393,5 @@ unmanage(Client *c) {
        XSync(dpy, False);
        XSetErrorHandler(xerror);
        XUngrabServer(dpy);
-       arrange(NULL);
+       arrange();
 }