implemented whitespace skipping for tags in /def/rule processing

This commit is contained in:
Anselm R. Garbe 2006-04-25 08:20:37 +02:00
parent 5d60f44cbc
commit 923b7d40f5
1 changed files with 2 additions and 2 deletions

View File

@ -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++;
}