Commit a49eac93 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

wrc: Allow comma after popup name.

parent 33c7105e
......@@ -369,7 +369,7 @@ resource_file
else
$1 = rsc;
/* Final statements before were done */
/* Final statements before we're done */
if ((head = get_resource_head($1)) != NULL)
{
if (resource_top) /* append to existing resources */
......@@ -1278,13 +1278,14 @@ item_definitions
* (who would want to specify a MF_x flag twice?).
*/
item_options
: /* Empty */ { $$ = 0; }
| opt_comma tCHECKED item_options { $$ = $3 | MF_CHECKED; }
| opt_comma tGRAYED item_options { $$ = $3 | MF_GRAYED; }
| opt_comma tHELP item_options { $$ = $3 | MF_HELP; }
| opt_comma tINACTIVE item_options { $$ = $3 | MF_DISABLED; }
| opt_comma tMENUBARBREAK item_options { $$ = $3 | MF_MENUBARBREAK; }
| opt_comma tMENUBREAK item_options { $$ = $3 | MF_MENUBREAK; }
: /* Empty */ { $$ = 0; }
| ',' item_options { $$ = $2; }
| tCHECKED item_options { $$ = $2 | MF_CHECKED; }
| tGRAYED item_options { $$ = $2 | MF_GRAYED; }
| tHELP item_options { $$ = $2 | MF_HELP; }
| tINACTIVE item_options { $$ = $2 | MF_DISABLED; }
| tMENUBARBREAK item_options { $$ = $2 | MF_MENUBARBREAK; }
| tMENUBREAK item_options { $$ = $2 | MF_MENUBREAK; }
;
/* ------------------------------ 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