applied sanders patch to remove unnecessary commit()
authorAnselm R. Garbe <arg@10kloc.org>
Thu, 31 Aug 2006 08:48:04 +0200
changeset 393 6786cd59468f
parent 392 278277287de6
child 394 1da9a6b94ca9
applied sanders patch to remove unnecessary commit()
config.mk
tag.c
view.c
--- a/config.mk	Wed Aug 30 13:00:30 2006 +0200
+++ b/config.mk	Thu Aug 31 08:48:04 2006 +0200
@@ -1,5 +1,5 @@
 # dwm version
-VERSION = 1.2
+VERSION = 1.3
 
 # Customize below to fit your system
 
--- a/tag.c	Wed Aug 30 13:00:30 2006 +0200
+++ b/tag.c	Thu Aug 31 08:48:04 2006 +0200
@@ -30,17 +30,6 @@
 static RReg *rreg = NULL;
 static unsigned int len = 0;
 
-static void
-commit()
-{
-	/* asserts sel != NULL */
-	settitle(sel);
-	if(!isvisible(sel))
-		arrange(NULL);
-	else
-		drawstatus();
-}
-
 /* extern */
 
 Client *
@@ -132,7 +121,7 @@
 	for(i = 0; i < ntags; i++)
 		sel->tags[i] = False;
 	sel->tags[arg->i] = True;
-	commit();
+	arrange(NULL);
 }
 
 void
@@ -147,5 +136,5 @@
 	for(i = 0; i < ntags && !sel->tags[i]; i++);
 	if(i == ntags)
 		sel->tags[arg->i] = True;
-	commit();
+	arrange(NULL);
 }
--- a/view.c	Wed Aug 30 13:00:30 2006 +0200
+++ b/view.c	Thu Aug 31 08:48:04 2006 +0200
@@ -67,7 +67,9 @@
 		else
 			ban(c);
 	}
-	if((sel = getnext(clients)))
+	if(!sel || !isvisible(sel))
+		sel = getnext(clients);
+	if(sel)
 		focus(sel);
 	else
 		XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
@@ -130,7 +132,9 @@
 		else
 			ban(c);
 	}
-	if((sel = getnext(clients)))
+	if(!sel || !isvisible(sel))
+		sel = getnext(clients);
+	if(sel)
 		focus(sel);
 	else
 		XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);