summaryrefslogtreecommitdiff
path: root/support/pdfxup/pdfxup
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2020-01-08 03:00:28 +0000
committerNorbert Preining <norbert@preining.info>2020-01-08 03:00:28 +0000
commit1b3f15203efd63cdab3fb47f37ff5f6c10558477 (patch)
treed9e957055fddd80101debe41dced62c1fe4a0c1a /support/pdfxup/pdfxup
parentdf03e5b3de4cbd1ded325d15714456336229a223 (diff)
CTAN sync 202001080300
Diffstat (limited to 'support/pdfxup/pdfxup')
-rwxr-xr-xsupport/pdfxup/pdfxup6
1 files changed, 3 insertions, 3 deletions
diff --git a/support/pdfxup/pdfxup b/support/pdfxup/pdfxup
index 62226cb45a..d0216122b5 100755
--- a/support/pdfxup/pdfxup
+++ b/support/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'