diff --git a/parse.y b/parse.y index a0cb18770..803ee4384 100644 --- a/parse.y +++ b/parse.y @@ -19,7 +19,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #ifdef HAVE_CVS_IDENT -#ident "$Id: parse.y,v 1.201.2.4 2006/07/10 00:21:52 steve Exp $" +#ident "$Id: parse.y,v 1.201.2.5 2006/12/03 04:58:20 steve Exp $" #endif # include "config.h" @@ -2460,7 +2460,10 @@ spec_notifier | spec_notifier ',' { } | spec_notifier ',' identifier - { delete $3; + { delete $3; } + | spec_notifier ',' identifier '[' expr_primary ']' + { delete $3; + delete $5; } | IDENTIFIER { delete $1; }