Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
small change to comments, renamed two set* functions in client.c into update*
[dwm.git]
/
view.c
diff --git
a/view.c
b/view.c
index
5cbab08
..
3e78661
100644
(file)
--- a/
view.c
+++ b/
view.c
@@
-77,8
+77,8
@@
dofloat(Arg *arg)
ban(c);
}
if(!sel || !isvisible(sel)) {
ban(c);
}
if(!sel || !isvisible(sel)) {
- for(
sel = stack; sel && !isvisible(sel); sel = sel
->snext);
- focus(
sel
);
+ for(
c = stack; c && !isvisible(c); c = c
->snext);
+ focus(
c
);
}
restack();
}
}
restack();
}
@@
-141,8
+141,8
@@
dotile(Arg *arg)
ban(c);
}
if(!sel || !isvisible(sel)) {
ban(c);
}
if(!sel || !isvisible(sel)) {
- for(
sel = stack; sel && !isvisible(sel); sel = sel
->snext);
- focus(
sel
);
+ for(
c = stack; c && !isvisible(c); c = c
->snext);
+ focus(
c
);
}
restack();
}
}
restack();
}