parser.y

changeset 31
2cec996b38bc
parent 30
35fad7ec7732
child 32
3aac131058da
     1.1 diff -r 35fad7ec7732 -r 2cec996b38bc parser.y
     1.2 --- a/parser.y	Tue Jan 01 06:11:43 2002 +0000
     1.3 +++ b/parser.y	Tue Jan 01 06:17:39 2002 +0000
     1.4 @@ -164,10 +164,13 @@
     1.5  	| SUBJECT STRING { output_set_subject ($2); }
     1.6  	| KEYWORDS STRING { output_set_keywords ($2); } ;
     1.7  
     1.8 +pdf_file_attribute_list:
     1.9 +	pdf_file_attribute
    1.10 +	| pdf_file_attribute_list pdf_file_attribute ;
    1.11 +
    1.12  pdf_file_attributes:
    1.13  	/* empty */
    1.14 -	| pdf_file_attribute
    1.15 -	| pdf_file_attributes pdf_file_attribute ;
    1.16 +	| pdf_file_attribute_list ;
    1.17  
    1.18  output_file_clause:
    1.19  	FILE_KEYWORD STRING { output_set_file ($2); }