This website works better with JavaScript.
Home
Explore
Help
Sign In
Linux
/
dwm
generated from
gmarx/git-template
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
simplified unmanage
config
Anselm R.Garbe
18 years ago
parent
735ca9ccd6
commit
d3969634ac
1 changed files
with
2 additions
and
7 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-7
client.c
+ 2
- 7
client.c
View File
@ -438,13 +438,8 @@ unmanage(Client *c)
c
-
>
next
-
>
prev
=
c
-
>
prev
;
if
(
c
=
=
clients
)
clients
=
c
-
>
next
;
if
(
sel
=
=
c
)
{
sel
=
getnext
(
c
-
>
next
)
;
if
(
!
sel
)
sel
=
getprev
(
c
-
>
prev
)
;
if
(
!
sel
)
sel
=
clients
;
}
if
(
sel
=
=
c
)
sel
=
getnext
(
clients
)
;
free
(
c
-
>
tags
)
;
free
(
c
)
;
Write
Preview
Loading…
Cancel
Save