From: Christopher John Purnell Date: Wed, 2 Jul 2003 09:38:58 +0000 (+0000) Subject: Added some semicolons that yacc was warning about. X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=commitdiff_plain;h=c535ef5ef520519f60ea16251d2926c4a7aa452c;p=freeglut Added some semicolons that yacc was warning about. git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@118 7f0cb862-5218-0410-a997-914c9d46530a --- diff --git a/genfonts/to_stroke.y b/genfonts/to_stroke.y index bd1205b..87712e2 100644 --- a/genfonts/to_stroke.y +++ b/genfonts/to_stroke.y @@ -164,10 +164,10 @@ num_ch: NUM_CH INTEGER { set_num_ch($2);}; fontprops : /* empty */ | properties; -properties : PROPERTIES INTEGER { init_properties ($2); } property_list - { check_num_props (); } +properties : PROPERTIES INTEGER { init_properties ($2); } property_list + { 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); }; @@ -195,7 +195,7 @@ right : RIGHT REAL{ $$ = $2; }; strokes : /* empty */ | path strokes; path : closeflag n_pts { init_path($1, $2); } points - { check_npts(); } + { check_npts(); }; points : /* empty */ | coord points;