diff options
author | Karl Berry <karl@freefriends.org> | 2020-01-07 21:34:25 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2020-01-07 21:34:25 +0000 |
commit | 4f9a537a10387c6cc0ce75079dd23e170566cf6d (patch) | |
tree | 05e10ad7ec965290a6310153fb1bfbbcfa753626 /Master/texmf-dist/scripts/pdfxup | |
parent | bd0440a1e2c8857d550e956cd9d69c38953549f0 (diff) |
pdfxup (7jan20)
git-svn-id: svn://tug.org/texlive/trunk@53345 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/pdfxup')
-rwxr-xr-x | Master/texmf-dist/scripts/pdfxup/pdfxup | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf-dist/scripts/pdfxup/pdfxup b/Master/texmf-dist/scripts/pdfxup/pdfxup index 62226cb45ab..d0216122b5d 100755 --- a/Master/texmf-dist/scripts/pdfxup/pdfxup +++ b/Master/texmf-dist/scripts/pdfxup/pdfxup @@ -181,15 +181,15 @@ function dimtopt() ;; *mm) dim=${dim%mm}; - eval dim=$((dim*2845/100))pt; + eval dim=$((dim*2845/1000))pt; ;; *cm) dim=${dim%cm}; - eval dim=$((dim*284/10))pt; + eval dim=$((dim*2845/100))pt; ;; *in) dim=${dim%in}; - eval dim=$((dim*723/10))pt; + eval dim=$((dim*7228/100))pt; ;; *[!0-9]*) ## should not occur... has been filtered out by main 'case' |