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:
Cary R 2009-06-05 16:12:17 -07:00 committed by Stephen Williams
parent aeac491cfc
commit 5153bfc1f7
1 changed files with 12 additions and 0 deletions

12
parse.y
View File

@ -3256,6 +3256,18 @@ specify_item
| K_Swidth '(' spec_reference_event ',' delay_value ')' ';'
{ 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