wmii

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

commit 923b7d40f5aae53a13f75782ab67d64c920fe33b
parent 5d60f44cbc7254f7daf6094f34175aa0cd69f0a2
Author: Anselm R. Garbe <garbeam@wmii.de>
Date:   Tue, 25 Apr 2006 08:20:37 +0200

implemented whitespace skipping for tags in /def/rule processing


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

diff --git a/cmd/wm/rule.c b/cmd/wm/rule.c @@ -122,8 +122,8 @@ update_rules() mode = IGNORE; } else { - if((*p == ' ' || *p == '\t') && (tags[0] == 0)) - continue; /* skip prefixed whitespaces */ + if(*p == ' ' || *p == '\t') + continue; /* skip whitespaces */ *t = *p; t++; }