diff options
author | Karl Berry <karl@freefriends.org> | 2014-06-19 20:25:36 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2014-06-19 20:25:36 +0000 |
commit | dfb6a6e86ad28eb8628676615b0147a26deb9685 (patch) | |
tree | 93973696c580c217c182ed885c17c8599c0bfc83 /Master/texmf-dist | |
parent | c37e450248a4325fc7cdbedfac9a92094dfa97e3 (diff) |
epstopdf (19jun14)
git-svn-id: svn://tug.org/texlive/trunk@34322 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist')
-rw-r--r-- | Master/texmf-dist/doc/man/man1/epstopdf.man1.pdf | bin | 9859 -> 9859 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/man/man1/repstopdf.man1.pdf | bin | 9859 -> 9859 bytes | |||
-rwxr-xr-x | Master/texmf-dist/scripts/epstopdf/epstopdf.pl | 10 |
3 files changed, 7 insertions, 3 deletions
diff --git a/Master/texmf-dist/doc/man/man1/epstopdf.man1.pdf b/Master/texmf-dist/doc/man/man1/epstopdf.man1.pdf Binary files differindex fec401f3de2..b3eea9e7b27 100644 --- a/Master/texmf-dist/doc/man/man1/epstopdf.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/epstopdf.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/repstopdf.man1.pdf b/Master/texmf-dist/doc/man/man1/repstopdf.man1.pdf Binary files differindex 56f14e52b74..f214b1b719a 100644 --- a/Master/texmf-dist/doc/man/man1/repstopdf.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/repstopdf.man1.pdf diff --git a/Master/texmf-dist/scripts/epstopdf/epstopdf.pl b/Master/texmf-dist/scripts/epstopdf/epstopdf.pl index 3d5bd54bfc3..b83e4bef60b 100755 --- a/Master/texmf-dist/scripts/epstopdf/epstopdf.pl +++ b/Master/texmf-dist/scripts/epstopdf/epstopdf.pl @@ -1,5 +1,5 @@ #!/usr/bin/env perl -# $Id: epstopdf.pl 32701 2014-01-17 18:09:54Z karl $ +# $Id: epstopdf.pl 34293 2014-06-18 18:16:38Z karl $ # (Copyright lines below.) # # Redistribution and use in source and binary forms, with or without @@ -34,9 +34,12 @@ # "%%BoundingBox: (atend)" when input is not seekable (e.g., from a pipe), # # emacs-page -my $ver = "2.21"; +my $ver = "2.22"; # History +# 2014/06/18 v2.22 (Karl Berry) +# * escape % in $outputfilename; report from William Fischer, +# tex-k mail 16 Jun 2014 18:45:12. # 2014/01/17 v2.21 (Karl Berry) # * tweaks to help message, per reports from Knuth. # 2013/09/28 v2.20 (Heiko Oberdiek, and (a little) Karl Berry) @@ -165,7 +168,7 @@ my $ver = "2.21"; ### emacs-page ### program identification my $program = "epstopdf"; -my $ident = '($Id: epstopdf.pl 32701 2014-01-17 18:09:54Z karl $)' . " $ver"; +my $ident = '($Id: epstopdf.pl 34293 2014-06-18 18:16:38Z karl $)' . " $ver"; my $copyright = <<END_COPYRIGHT ; Copyright 2009-2014 Karl Berry et al. Copyright 2002-2009 Gerben Wierda et al. @@ -555,6 +558,7 @@ if (! $OutputFilename) { $OutputFilename = "-"; } } +$OutputFilename =~ s/%/%%/g; # we will do the escaping for gs debug "Output filename:", $OutputFilename; push @GS, "-sOutputFile=$OutputFilename"; |