Commit 8acdd0ba authored by Michael Lin's avatar Michael Lin Committed by Alexandre Julliard

Change menu item options to use optional comma.

parent c3caaea2
...@@ -1283,12 +1283,12 @@ item_definitions ...@@ -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 ------------------------------ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment