Commit 64b761c1 authored by Wayne Davison's avatar Wayne Davison

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

parent a1ac8edd
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment