cvsimport
This commit is contained in:
13
parse.y
13
parse.y
@@ -156,9 +156,20 @@ main : FONTNAME STRING {
|
||||
free($3);
|
||||
YYERROR;
|
||||
}
|
||||
conf_autogroup(conf, $2, $3);
|
||||
conf_autogroup(conf, $2, NULL, $3);
|
||||
free($3);
|
||||
}
|
||||
| AUTOGROUP NUMBER STRING ',' STRING {
|
||||
if ($2 < 0 || $2 > 9) {
|
||||
yyerror("invalid autogroup");
|
||||
free($3);
|
||||
free($5);
|
||||
YYERROR;
|
||||
}
|
||||
conf_autogroup(conf, $2, $3, $5);
|
||||
free($3);
|
||||
free($5);
|
||||
}
|
||||
| IGNORE STRING {
|
||||
conf_ignore(conf, $2);
|
||||
free($2);
|
||||
|
||||
Reference in New Issue
Block a user