wmii

git clone git://oldgit.suckless.org/wmii/
Log | Files | Refs | README | LICENSE

commit bf9a872c4df751e22c8a2e322301658f37a49049
parent e4d1df57e656294579ab87f53928d68f367d33dc
Author: Anselm R. Garbe <garbeam@wmii.de>
Date:   Tue,  7 Mar 2006 19:37:26 +0100

fixed bug reported by bogon (with the sideeffect of empty ws until select)


Diffstat:
cmd/wm/tag.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/cmd/wm/tag.c b/cmd/wm/tag.c @@ -195,6 +195,7 @@ update_ctags() fprintf(stderr, "%s", "update_ctags\n"); for(i = 0; i < nctag; i++) { +#if 0 Bool exists = False; for(j = 0; j < nclient; j++) if(strstr(client[j]->tags, ctag[i])) @@ -206,6 +207,7 @@ update_ctags() j--; } } +#endif free(ctag[i]); ctag[i] = nil; }