Change menu item options to use optional comma.

This commit is contained in:
Michael Lin 2005-04-14 11:32:44 +00:00 committed by Alexandre Julliard
parent c3caaea21d
commit 8acdd0baa9
1 changed files with 6 additions and 6 deletions

View File

@ -1283,12 +1283,12 @@ item_definitions
*/ */
item_options item_options
: /* Empty */ { $$ = 0; } : /* Empty */ { $$ = 0; }
| ',' tCHECKED item_options { $$ = $3 | MF_CHECKED; } | opt_comma tCHECKED item_options { $$ = $3 | MF_CHECKED; }
| ',' tGRAYED item_options { $$ = $3 | MF_GRAYED; } | opt_comma tGRAYED item_options { $$ = $3 | MF_GRAYED; }
| ',' tHELP item_options { $$ = $3 | MF_HELP; } | opt_comma tHELP item_options { $$ = $3 | MF_HELP; }
| ',' tINACTIVE item_options { $$ = $3 | MF_DISABLED; } | opt_comma tINACTIVE item_options { $$ = $3 | MF_DISABLED; }
| ',' tMENUBARBREAK item_options { $$ = $3 | MF_MENUBARBREAK; } | opt_comma tMENUBARBREAK item_options { $$ = $3 | MF_MENUBARBREAK; }
| ',' tMENUBREAK item_options { $$ = $3 | MF_MENUBREAK; } | opt_comma tMENUBREAK item_options { $$ = $3 | MF_MENUBREAK; }
; ;
/* ------------------------------ MenuEx ------------------------------ */ /* ------------------------------ MenuEx ------------------------------ */