1
0
mirror of synced 2026-02-07 00:48:07 +00:00

Add missing semicolons.

This commit is contained in:
Eric Smith
2016-06-23 19:56:28 -06:00
parent 9b985f4e23
commit f3d9963b98

View File

@@ -110,7 +110,7 @@ image_ranges:
input_file_clause:
FILE_KEYWORD STRING ';' { input_set_file ($2) } ;
FILE_KEYWORD STRING ';' { input_set_file ($2); } ;
image_clause:
IMAGE INTEGER ';' { range_t range = { $2, $2 }; input_images (range); } ;
@@ -119,7 +119,7 @@ images_clause:
IMAGES image_ranges ';' ;
rotate_clause:
ROTATE INTEGER ';' { input_set_rotation ($2) } ;
ROTATE INTEGER ';' { input_set_rotation ($2); } ;
unit:
/* empty */ /* default to INCH */ { $$ = 1.0; }