From cd0c2ee0f315fae12ba481e33fc242f9dbbd8b31 Mon Sep 17 00:00:00 2001 From: Eric Smith Date: Wed, 12 Mar 2003 11:17:00 +0000 Subject: [PATCH] remove the word 'copyright' from producer string in PDF file info. --- Makefile | 4 ++-- pdf.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 50188dc..fbbb262 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # t2p: build a PDF file out of one or more TIFF Class F Group 4 files # Makefile -# $Id: Makefile,v 1.25 2003/03/12 03:08:10 eric Exp $ +# $Id: Makefile,v 1.26 2003/03/12 03:17:00 eric Exp $ # Copyright 2001, 2002, 2003 Eric Smith # # This program is free software; you can redistribute it and/or modify @@ -55,7 +55,7 @@ YFLAGS = -d -v # let me know why so I can improve this Makefile. # ----------------------------------------------------------------------------- -VERSION = 0.20 +VERSION = 0.21 PACKAGE = t2p diff --git a/pdf.c b/pdf.c index ab42327..e486694 100644 --- a/pdf.c +++ b/pdf.c @@ -4,7 +4,7 @@ * will be compressed using ITU-T T.6 (G4) fax encoding. * * PDF routines - * $Id: pdf.c,v 1.6 2003/03/07 22:52:09 eric Exp $ + * $Id: pdf.c,v 1.7 2003/03/12 03:17:00 eric Exp $ * Copyright 2001, 2002, 2003 Eric Smith * * This program is free software; you can redistribute it and/or modify @@ -98,7 +98,7 @@ pdf_file_handle pdf_create (char *filename, int page_mode) pdf_new_name (page_mode_string)); pdf_file->info = pdf_new_ind_ref (pdf_file, pdf_new_obj (PT_DICTIONARY)); - pdf_set_info (pdf_file, "Producer", "t2p, Copyright 2003 Eric Smith "); + pdf_set_info (pdf_file, "Producer", "t2p by Eric Smith "); pdf_file->trailer_dict = pdf_new_obj (PT_DICTIONARY); /* Size key will be added later */