Update of /cvsroot/rccparser/rccparser/src
In directory sc8-pr-cvs1:/tmp/cvs-serv15684
Modified Files:
rccparse.ypp
Log Message:
Removed 5 ';' that shouldn't be there.
Index: rccparse.ypp
===================================================================
RCS file: /cvsroot/rccparser/rccparser/src/rccparse.ypp,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** rccparse.ypp 23 Apr 2003 04:33:14 -0000 1.14
--- rccparse.ypp 3 May 2003 16:52:37 -0000 1.15
***************
*** 610,614 ****
getDouble( $18 ), getDouble( $19 ),
getDouble( $20 ) );
! };
| LP LP P_KW side INT G_KW RP
REAL REAL REAL REAL REAL REAL
--- 610,614 ----
getDouble( $18 ), getDouble( $19 ),
getDouble( $20 ) );
! }
| LP LP P_KW side INT G_KW RP
REAL REAL REAL REAL REAL REAL
***************
*** 979,983 ****
visual: LP SEE_KW INT object_list RP
! { PARAM.buildVisual( getInt( $3 ) ); };
| LP SEE_GLOBAL_KW INT glob_object_list RP
{ PARAM.buildGlobalVisual( getInt( $3 ) ); };
--- 979,983 ----
visual: LP SEE_KW INT object_list RP
! { PARAM.buildVisual( getInt( $3 ) ); }
| LP SEE_GLOBAL_KW INT glob_object_list RP
{ PARAM.buildGlobalVisual( getInt( $3 ) ); };
***************
*** 1087,1094 ****
| LP non_close_goal_name REAL RP
{ PARAM.buildGoal( false,
! getDouble( $3 ) ); };
| LP close_goal_name REAL RP
{ PARAM.buildGoal( true,
! getDouble( $3 ) ); };
glob_goal: LP non_close_goal_name REAL REAL RP
--- 1087,1096 ----
| LP non_close_goal_name REAL RP
{ PARAM.buildGoal( false,
! getDouble( $3 ) );
! }
| LP close_goal_name REAL RP
{ PARAM.buildGoal( true,
! getDouble( $3 ) );
! };
glob_goal: LP non_close_goal_name REAL REAL RP
***************
*** 1278,1284 ****
{ PARAM.buildInit( getInt( $4 ) ); }
| LP INIT_KW side play_mode RP
! { PARAM.buildInit(); };
| LP INIT_KW side OK_KW RP
! { PARAM.buildCoachInit(); };
| LP INIT_KW OK_KW RP
{ PARAM.buildCoachInit(); }
--- 1280,1286 ----
{ PARAM.buildInit( getInt( $4 ) ); }
| LP INIT_KW side play_mode RP
! { PARAM.buildInit(); }
| LP INIT_KW side OK_KW RP
! { PARAM.buildCoachInit(); }
| LP INIT_KW OK_KW RP
{ PARAM.buildCoachInit(); }
|