mirror of https://github.com/0intro/wmii
implemented whitespace skipping for tags in /def/rule processing
This commit is contained in:
parent
5d60f44cbc
commit
923b7d40f5
|
@ -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++;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue