Compare commits

...

2 Commits

Author SHA1 Message Date
arg@mig29 7009ebfa69 hotfix of a serious crashing bug 2006-12-04 21:00:26 +01:00
arg@mig29 760e23dd3a Added tag 2.5 for changeset dcbbfabc8ecc5f33a6cc950584de87da1a368045 2006-12-04 15:39:43 +01:00
4 changed files with 6 additions and 3 deletions
+1
View File
@@ -23,3 +23,4 @@ a2c465098a3b972bbed00feda9804b6aae1e9531 2.1
7e92f58754ae6edb3225f26d754bd89c1ff458cf 2.2
719b37b37b0df829d7cf017ac70e353088fe5849 2.3
32b246925086910d63147483160281a91a47479f 2.4
dcbbfabc8ecc5f33a6cc950584de87da1a368045 2.5
+1 -1
View File
@@ -1,5 +1,5 @@
# dwm version
VERSION = 2.5
VERSION = 2.5.1
# Customize below to fit your system
+2 -1
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 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();
}