about summary refs log tree commit diff stats
path: root/tag.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-02-22 12:15:48 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-02-22 12:15:48 +0100
commit5711609203602bd01b4b131572142bb171ffc560 (patch)
treeaa0c27a21869acd9fa2696aedab6020024f812b7 /tag.c
parent825b7c3eb17fd0a79005110bf28e92c4ed2f1a90 (diff)
downloaddwm-5711609203602bd01b4b131572142bb171ffc560.tar.gz
small bugfix
Diffstat (limited to 'tag.c')
-rw-r--r--tag.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tag.c b/tag.c
index a96cc62..ccc2956 100644
--- a/tag.c
+++ b/tag.c
@@ -108,7 +108,7 @@ tag(const char *arg) {
 	if(!sel)
 		return;
 	for(i = 0; i < ntags; i++)
-		sel->tags[i] = arg ? False : True;
+		sel->tags[i] = arg != NULL;
 	i = arg ? atoi(arg) : 0;
 	if(i >= 0 && i < ntags)
 		sel->tags[i] = True;
@@ -135,7 +135,7 @@ toggleview(const char *arg) {
 
 	i = arg ? atoi(arg) : 0;
 	seltag[i] = !seltag[i];
-	for(j = 0; j < ntags && !seltag[j]; i++);
+	for(j = 0; j < ntags && !seltag[j]; j++);
 	if(j == ntags)
 		seltag[i] = True; /* cannot toggle last view */
 	lt->arrange();
@@ -146,7 +146,7 @@ view(const char *arg) {
 	int i;
 
 	for(i = 0; i < ntags; i++)
-		seltag[i] = arg ? False : True;
+		seltag[i] = arg != NULL;
 	i = arg ? atoi(arg) : 0;
 	if(i >= 0 && i < ntags)
 		seltag[i] = True;