From a89c9be07564ef436afe34070cc506e7f7ced596 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 26 Jun 1997 18:21:02 +0000 Subject: [PATCH] * rcparse.y: Add a couple of missing semicolons (accepted by bison but not byacc). --- binutils/ChangeLog | 2 ++ binutils/rcparse.y | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/binutils/ChangeLog b/binutils/ChangeLog index a28f8cb61e7..5e8513fb77f 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -3,6 +3,8 @@ Thu Jun 26 13:53:17 1997 Ian Lance Taylor * 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 diff --git a/binutils/rcparse.y b/binutils/rcparse.y index 9ea9cf5eae4..5c0618474a1 100644 --- a/binutils/rcparse.y +++ b/binutils/rcparse.y @@ -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, -- 2.30.2