Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
do* has no Arg arument anymore (never called directly)
[dwm.git]
/
client.c
diff --git
a/client.c
b/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);
XMapWindow(dpy, c->twin);
if(isvisible(c))
focus(c);
- arrange(
NULL
);
+ arrange();
}
void
}
void
@@
-393,5
+393,5
@@
unmanage(Client *c) {
XSync(dpy, False);
XSetErrorHandler(xerror);
XUngrabServer(dpy);
XSync(dpy, False);
XSetErrorHandler(xerror);
XUngrabServer(dpy);
- arrange(
NULL
);
+ arrange();
}
}