Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
hotfixing with sanders hint
[dwm.git]
/
tag.c
diff --git
a/tag.c
b/tag.c
index
ddffafa
..
dcda6dc
100644
(file)
--- a/
tag.c
+++ b/
tag.c
@@
-30,17
+30,6
@@
RULES
static RReg *rreg = NULL;
static unsigned int len = 0;
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 *
/* extern */
Client *
@@
-132,7
+121,7
@@
tag(Arg *arg)
for(i = 0; i < ntags; i++)
sel->tags[i] = False;
sel->tags[arg->i] = True;
for(i = 0; i < ntags; i++)
sel->tags[i] = False;
sel->tags[arg->i] = True;
- a
pplytag(
);
+ a
rrange(NULL
);
}
void
}
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;
for(i = 0; i < ntags && !sel->tags[i]; i++);
if(i == ntags)
sel->tags[arg->i] = True;
- a
pplytag(
);
+ a
rrange(NULL
);
}
}