mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-17 13:10:12 +08:00
* rcparse.y: Add a couple of missing semicolons (accepted by bison
but not byacc).
This commit is contained in:
parent
d29cd97071
commit
a89c9be075
@ -3,6 +3,8 @@ Thu Jun 26 13:53:17 1997 Ian Lance Taylor <ian@cygnus.com>
|
||||
* windres.c (main): Quit if we didn't get any resources.
|
||||
* rescoff.c (write_coff_file): Don't free the relocation array
|
||||
until after we've closed the BFD.
|
||||
* rcparse.y: Add a couple of missing semicolons (accepted by bison
|
||||
but not byacc).
|
||||
|
||||
Wed Jun 25 20:57:06 1997 Ian Lance Taylor <ian@cygnus.com>
|
||||
|
||||
|
@ -395,7 +395,7 @@ styles:
|
||||
dialog.class = $3;
|
||||
}
|
||||
| styles STYLE
|
||||
{ style = dialog.style }
|
||||
{ style = dialog.style; }
|
||||
styleexpr
|
||||
{
|
||||
dialog.style = style;
|
||||
@ -716,7 +716,7 @@ control:
|
||||
}
|
||||
| USERBUTTON QUOTEDSTRING ',' numexpr ',' numexpr ',' numexpr ','
|
||||
numexpr ',' numexpr ','
|
||||
{ style = WS_CHILD | WS_VISIBLE }
|
||||
{ style = WS_CHILD | WS_VISIBLE; }
|
||||
styleexpr optcnumexpr
|
||||
{
|
||||
$$ = define_control ($2, $4, $6, $8, $10, $12, CTL_BUTTON,
|
||||
|
Loading…
Reference in New Issue
Block a user