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]
/
event.c
diff --git
a/event.c
b/event.c
index
e959917
..
7f040e2
100644
(file)
--- a/
event.c
+++ b/
event.c
@@
-179,7
+179,7
@@
configurerequest(XEvent *e) {
ban(c);
}
else
ban(c);
}
else
- arrange(
NULL
);
+ arrange();
}
else {
wc.x = ev->x;
}
else {
wc.x = ev->x;
@@
-304,7
+304,7
@@
propertynotify(XEvent *e) {
case XA_WM_TRANSIENT_FOR:
XGetTransientForHint(dpy, c->win, &trans);
if(!c->isfloat && (c->isfloat = (trans != 0)))
case XA_WM_TRANSIENT_FOR:
XGetTransientForHint(dpy, c->win, &trans);
if(!c->isfloat && (c->isfloat = (trans != 0)))
- arrange(
NULL
);
+ arrange();
break;
case XA_WM_NORMAL_HINTS:
updatesize(c);
break;
case XA_WM_NORMAL_HINTS:
updatesize(c);