commit 538384f55f37e588a78f41bc45136fed68780fc5
parent 63e7bfd6c8b5b12702efb345d69e5214e338d675
Author: Anselm R. Garbe <garbeam@wmii.de>
Date: Mon, 6 Mar 2006 19:16:29 +0100
fix of the last change
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/cmd/wm/client.c b/cmd/wm/client.c
@@ -344,7 +344,7 @@ detach_client(Client *c, Bool unmap)
reparent_client(c, root, c->rect.x, c->rect.y);
XUnmapWindow(dpy, c->framewin);
}
- update_ctags();
+/* update_ctags();*/
}
Client *
diff --git a/cmd/wm/tag.c b/cmd/wm/tag.c
@@ -238,9 +238,9 @@ void
detach_fromtag(Tag *t, Client *c, Bool unmap)
{
int i;
- c->tags[0] = 0;
/* TODO: achieve something to remove a specific tag from client's tags */
#if 0
+ c->tags[0] = 0;
char *p = strstr(c->tags, t->name);
if(p)
memmove(p, p + strlen(t->name), strlen(p + strlen(t->name)));