From 5153bfc1f7c3ad81a153cdfcc1fc6b280f1dff50 Mon Sep 17 00:00:00 2001 From: Cary R Date: Fri, 5 Jun 2009 16:12:17 -0700 Subject: [PATCH] Ignore specify pulsestyle_* and *showcancelled directives. This patch adds code to silently ignore the specify directives: pulsestyle_onevent pulsestyle_ondetect showcancelled noshowcancelled. --- parse.y | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/parse.y b/parse.y index 9ecf12849..d25591943 100644 --- a/parse.y +++ b/parse.y @@ -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