Bugfix: Make the criteria rules recursive in src/cfgparse.y, too (Thanks f8l)

This commit is contained in:
Michael Stapelberg 2011-08-02 19:44:44 +02:00
parent b57e8570c9
commit 554a43ca4a
1 changed files with 5 additions and 0 deletions

View File

@ -685,6 +685,11 @@ matchend:
;
criteria:
criteria criterion
| criterion
;
criterion:
TOK_CLASS '=' STR
{
printf("criteria: class = %s\n", $3);