This website works better with JavaScript.
Home
Explore
Help
Sign In
gmarx
/
dwm-macbookair
mirror of
https://github.com/gmarxcc/dwm-macbookair
Watch
1
Star
1
Fork
0
Code
Issues
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
hotfix
main
Anselm R Garbe
15 years ago
parent
1ddfc571ae
commit
25947bcfdb
1 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-3
dwm.c
+ 3
- 3
dwm.c
View File
@ -600,14 +600,14 @@ detach(Client *c) {
void
detachstack
(
Client
*
c
)
{
Client
*
*
tc
;
Client
*
*
tc
,
*
t
;
for
(
tc
=
&
c
-
>
mon
-
>
stack
;
*
tc
&
&
*
tc
!
=
c
;
tc
=
&
(
*
tc
)
-
>
snext
)
;
*
tc
=
c
-
>
snext
;
if
(
c
=
=
c
-
>
mon
-
>
sel
)
{
for
(
*
t
c
=
c
-
>
mon
-
>
stack
;
*
t
c
&
&
!
ISVISIBLE
(
(
*
t
c
)
)
;
*
t
c
=
(
*
t
c
)
-
>
snext
)
;
c
-
>
mon
-
>
sel
=
*
t
c
;
for
(
t
=
c
-
>
mon
-
>
stack
;
t
&
&
!
ISVISIBLE
(
t
)
;
t
=
t
-
>
snext
)
;
c
-
>
mon
-
>
sel
=
t
;
}
}
Write
Preview
Loading…
Cancel
Save