1.1 diff -r 3d0be1c1c1b2 -r be20d7e8466f semantics.c 1.2 --- a/semantics.c Mon Aug 26 06:03:55 2002 +0000 1.3 +++ b/semantics.c Tue Jan 21 18:30:49 2003 +0000 1.4 @@ -1,3 +1,28 @@ 1.5 +/* 1.6 + * t2p: Create a PDF file from the contents of one or more TIFF 1.7 + * bilevel image files. The images in the resulting PDF file 1.8 + * will be compressed using ITU-T T.6 (G4) fax encoding. 1.9 + * 1.10 + * Semantic routines for spec file parser 1.11 + * $Id: semantics.c,v 1.16 2003/01/21 10:30:49 eric Exp $ 1.12 + * Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com> 1.13 + * 1.14 + * This program is free software; you can redistribute it and/or modify 1.15 + * it under the terms of the GNU General Public License version 2 as 1.16 + * published by the Free Software Foundation. Note that permission is 1.17 + * not granted to redistribute this program under the terms of any 1.18 + * other version of the General Public License. 1.19 + * 1.20 + * This program is distributed in the hope that it will be useful, 1.21 + * but WITHOUT ANY WARRANTY; without even the implied warranty of 1.22 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1.23 + * GNU General Public License for more details. 1.24 + * 1.25 + * You should have received a copy of the GNU General Public License 1.26 + * along with this program; if not, write to the Free Software 1.27 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA */ 1.28 + 1.29 + 1.30 #include <stdbool.h> 1.31 #include <stdint.h> 1.32 #include <stdlib.h> 1.33 @@ -674,9 +699,10 @@ 1.34 parity, 1.35 & input_attributes.page_size); 1.36 1.37 - process_page (image->range.first + i, 1.38 - input_attributes, 1.39 - page->bookmark_list); 1.40 + if (! process_page (image->range.first + i, 1.41 + input_attributes, 1.42 + page->bookmark_list)) 1.43 + return (0); 1.44 i++; 1.45 p++; 1.46 page_index++;