Skip to content
This repository has been archived by the owner on Oct 4, 2018. It is now read-only.

Commit

Permalink
renaming isdestroyed into destroyed
Browse files Browse the repository at this point in the history
  • Loading branch information
garbeam committed Sep 8, 2009
1 parent 872a04a commit 82fd584
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dwm.c
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ static void togglefloating(const Arg *arg);
static void toggletag(const Arg *arg);
static void toggleview(const Arg *arg);
static void unfocus(Client *c);
static void unmanage(Client *c, Bool isdestroyed);
static void unmanage(Client *c, Bool destroyed);
static void unmapnotify(XEvent *e);
static void updategeom(void);
static void updatebarpos(Monitor *m);
Expand Down Expand Up @@ -1627,13 +1627,13 @@ unfocus(Client *c) {
}

void
unmanage(Client *c, Bool isdestroyed) {
unmanage(Client *c, Bool destroyed) {
XWindowChanges wc;

/* The server grab construct avoids race conditions. */
detach(c);
detachstack(c);
if(!isdestroyed) {
if(!destroyed) {
wc.border_width = c->oldbw;
XGrabServer(dpy);
XSetErrorHandler(xerrordummy);
Expand Down

0 comments on commit 82fd584

Please sign in to comment.