16 lines
703 B
Plaintext
16 lines
703 B
Plaintext
$OpenBSD: patch-fontforge_print_c,v 1.2 2014/01/14 17:16:07 jasper Exp $
|
|
--- fontforge/print.c.orig Thu Aug 2 17:09:09 2012
|
|
+++ fontforge/print.c Sat Jan 4 21:42:37 2014
|
|
@@ -1143,10 +1143,7 @@ static void dump_pdfprologue(PI *pi) {
|
|
tm = localtime(&now);
|
|
fprintf( pi->out, " /CreationDate (D:%4d%02d%02d%02d%02d",
|
|
tm->tm_year+1900, tm->tm_mon+1, tm->tm_mday, tm->tm_hour, tm->tm_min );
|
|
- if ( timezone==0 )
|
|
- fprintf( pi->out, "Z)\n" );
|
|
- else
|
|
- fprintf( pi->out, "%+02d')\n", (int) timezone/3600 ); /* doesn't handle half-hour zones */
|
|
+ fprintf( pi->out, "Z)\n" );
|
|
if ( author!=NULL )
|
|
fprintf( pi->out, " /Author (%s)\n", author );
|
|
fprintf( pi->out, ">>\n" );
|