This website works better with JavaScript.
Home
Explore
Help
Sign In
tovi
/
dwm
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
hotfix of a serious crashing bug
master
arg@mig29
18 years ago
parent
760e23dd3a
commit
7009ebfa69
3 changed files
with
5 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
config.mk
+2
-1
tag.c
+2
-1
view.c
+ 1
- 1
config.mk
View File
@ -1,5 +1,5 @@
# dwm version
VERSION
=
2.5
VERSION
=
2.5
.1
# Customize below to fit your system
+ 2
- 1
tag.c
View File
@ -114,7 +114,8 @@ tag(Arg *arg) {
return
;
for
(
i
=
0
;
i
<
ntags
;
i
+
+
)
sel
-
>
tags
[
i
]
=
(
arg
-
>
i
=
=
-
1
)
?
True
:
False
;
sel
-
>
tags
[
arg
-
>
i
]
=
True
;
if
(
arg
-
>
i
>
=
0
&
&
arg
-
>
i
<
ntags
)
sel
-
>
tags
[
arg
-
>
i
]
=
True
;
arrange
(
)
;
}
+ 2
- 1
view.c
View File
@ -234,7 +234,8 @@ view(Arg *arg) {
for
(
i
=
0
;
i
<
ntags
;
i
+
+
)
seltag
[
i
]
=
(
arg
-
>
i
=
=
-
1
)
?
True
:
False
;
seltag
[
arg
-
>
i
]
=
True
;
if
(
arg
-
>
i
>
=
0
&
&
arg
-
>
i
<
ntags
)
seltag
[
arg
-
>
i
]
=
True
;
arrange
(
)
;
}
Write
Preview
Loading…
Cancel
Save