Ignore specify pulsestyle_* and *showcancelled directives.
This patch adds code to silently ignore the specify directives: pulsestyle_onevent pulsestyle_ondetect showcancelled noshowcancelled.
This commit is contained in:
parent
623e897e55
commit
5a30355faf
12
parse.y
12
parse.y
|
|
@ -3256,6 +3256,18 @@ specify_item
|
||||||
| K_Swidth '(' spec_reference_event ',' delay_value ')' ';'
|
| K_Swidth '(' spec_reference_event ',' delay_value ')' ';'
|
||||||
{ delete $5;
|
{ delete $5;
|
||||||
}
|
}
|
||||||
|
| K_pulsestyle_onevent specify_path_identifiers ';'
|
||||||
|
{ delete $2;
|
||||||
|
}
|
||||||
|
| K_pulsestyle_ondetect specify_path_identifiers ';'
|
||||||
|
{ delete $2;
|
||||||
|
}
|
||||||
|
| K_showcancelled specify_path_identifiers ';'
|
||||||
|
{ delete $2;
|
||||||
|
}
|
||||||
|
| K_noshowcancelled specify_path_identifiers ';'
|
||||||
|
{ delete $2;
|
||||||
|
}
|
||||||
;
|
;
|
||||||
|
|
||||||
specify_item_list
|
specify_item_list
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue