changeset 383:2ec9cead84a7

applied patch similiar proposed by dave tweed
author Anselm R. Garbe <arg@10kloc.org>
date Tue, 29 Aug 2006 17:11:37 +0200 (2006-08-29)
parents 76b62c0c8c11
children 126e78129f1d
files tag.c
diffstat 1 files changed, 13 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/tag.c	Tue Aug 29 15:28:29 2006 +0200
+++ b/tag.c	Tue Aug 29 17:11:37 2006 +0200
@@ -30,6 +30,17 @@
 static RReg *rreg = NULL;
 static unsigned int len = 0;
 
+static void
+applytag()
+{
+	/* asserts sel != NULL */
+	settitle(sel);
+	if(!isvisible(sel))
+		arrange(NULL);
+	else
+		drawstatus();
+}
+
 /* extern */
 
 Client *
@@ -121,11 +132,7 @@
 	for(i = 0; i < ntags; i++)
 		sel->tags[i] = False;
 	sel->tags[arg->i] = True;
-	settitle(sel);
-	if(!isvisible(sel))
-		arrange(NULL);
-	else
-		drawstatus();
+	applytag();
 }
 
 void
@@ -140,9 +147,5 @@
 	for(i = 0; i < ntags && !sel->tags[i]; i++);
 	if(i == ntags)
 		sel->tags[arg->i] = True;
-	settitle(sel);
-	if(!isvisible(sel))
-		arrange(NULL);
-	else
-		drawstatus();
+	applytag();
 }