Allow a ',' to prefix the MODIFIERS for a single-letter filter rule.

This commit is contained in:
Wayne Davison
2005-02-08 18:47:25 +00:00
parent a1ac8edd66
commit 64b761c19a

View File

@@ -688,6 +688,8 @@ static const char *parse_rule_tok(const char *p, uint32 mflags, int xflags,
break;
default:
ch = *s;
if (s[1] == ',')
s++;
break;
}
switch (ch) {