Added some semicolons that yacc was warning about.
git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@118 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
parent
86b003c38b
commit
50b032cec5
@ -164,10 +164,10 @@ num_ch: NUM_CH INTEGER { set_num_ch($2);};
|
|||||||
|
|
||||||
fontprops : /* empty */ | properties;
|
fontprops : /* empty */ | properties;
|
||||||
|
|
||||||
properties : PROPERTIES INTEGER { init_properties ($2); } property_list
|
properties : PROPERTIES INTEGER { init_properties ($2); } property_list
|
||||||
{ check_num_props (); }
|
{ check_num_props (); };
|
||||||
|
|
||||||
property_list : /* empty */ | single_property property_list
|
property_list : /* empty */ | single_property property_list ;
|
||||||
|
|
||||||
single_property : STRING STRING { add_property($1, $2); };
|
single_property : STRING STRING { add_property($1, $2); };
|
||||||
|
|
||||||
@ -195,7 +195,7 @@ right : RIGHT REAL{ $$ = $2; };
|
|||||||
strokes : /* empty */ | path strokes;
|
strokes : /* empty */ | path strokes;
|
||||||
|
|
||||||
path : closeflag n_pts { init_path($1, $2); } points
|
path : closeflag n_pts { init_path($1, $2); } points
|
||||||
{ check_npts(); }
|
{ check_npts(); };
|
||||||
|
|
||||||
points : /* empty */ | coord points;
|
points : /* empty */ | coord points;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user