parser.y

changeset 17
d4699dfddcc0
parent 15
dda3d673b82b
child 18
3de372e4b230
     1.1 diff -r dbf5e39b1658 -r d4699dfddcc0 parser.y
     1.2 --- a/parser.y	Sun Dec 30 16:29:50 2001 +0000
     1.3 +++ b/parser.y	Sun Dec 30 16:29:50 2001 +0000
     1.4 @@ -1,7 +1,7 @@
     1.5  %{
     1.6    #include <stdio.h>
     1.7    #include "type.h"
     1.8 -  #include "tiff2pdf.h"
     1.9 +  #include "semantics.h"
    1.10  %}
    1.11  
    1.12  %union {
    1.13 @@ -74,7 +74,7 @@
    1.14  
    1.15  
    1.16  input_file_clause:
    1.17 -	FILE_KEYWORD STRING  ';'  { open_tiff_input_file ($2) } ;
    1.18 +	FILE_KEYWORD STRING  ';'  { input_set_file ($2) } ;
    1.19  
    1.20  image_clause:
    1.21  	IMAGE INTEGER ';' { input_images ($2, $2); }
    1.22 @@ -152,7 +152,7 @@
    1.23  	INPUT input_clauses ;
    1.24  
    1.25  output_file_clause:
    1.26 -	FILE_KEYWORD STRING  ';' { open_pdf_output_file ($2) } ;
    1.27 +	FILE_KEYWORD STRING  ';' { output_set_file ($2) } ;
    1.28  
    1.29  page_ranges:
    1.30  	range { output_pages ($1.first, $1.last); }