wmii

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

commit 889aaed80fd3d19867e68f0c12705a8b9f4c1f94
parent 3d0b3a41da573e44a07d35e041819cc5679a378e
Author: Anselm R. Garbe <garbeam@wmii.de>
Date:   Tue, 14 Mar 2006 09:36:59 +0100

temporary select tag(s) must be space separated (no inheritance)


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

diff --git a/cmd/wm/tag.c b/cmd/wm/tag.c @@ -160,13 +160,12 @@ get_tag(char *name) } cext_strlcpy(buf, name, sizeof(buf)); - nt = cext_tokenize(tags, 128, buf, '+'); + nt = cext_tokenize(tags, 128, buf, ' '); for(i = 0; i < nclient; i++) for(j = 0; j < nt; j++) if(strstr(client[i]->tags, tags[j])) n++; - if(!n) return nil;