aboutsummaryrefslogtreecommitdiffstats
path: root/tag.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-08-31 08:48:04 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-08-31 08:48:04 +0200
commit4c368bcd24172166aab32948fc63feaa6a1bec93 (patch)
treedddc175fd0f072d6b7ea09a9b91cbcdf8f9f64d6 /tag.c
parent9927b9e64253643f409bd1ef22349cf4e9ca7727 (diff)
downloaddwm-4c368bcd24172166aab32948fc63feaa6a1bec93.tar.zst
applied sanders patch to remove unnecessary commit()
Diffstat (limited to 'tag.c')
-rw-r--r--tag.c15
1 files changed, 2 insertions, 13 deletions
diff --git a/tag.c b/tag.c
index b7c06de..dcda6dc 100644
--- a/tag.c
+++ b/tag.c
@@ -30,17 +30,6 @@ RULES
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 @@ tag(Arg *arg)
for(i = 0; i < ntags; i++)
sel->tags[i] = False;
sel->tags[arg->i] = True;
- commit();
+ arrange(NULL);
}
void
@@ -147,5 +136,5 @@ toggletag(Arg *arg)
for(i = 0; i < ntags && !sel->tags[i]; i++);
if(i == ntags)
sel->tags[arg->i] = True;
- commit();
+ arrange(NULL);
}