summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvipdfm-x/mpost.c
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2013-11-23 12:04:33 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2013-11-23 12:04:33 +0000
commit7f28f838343191fbf6258e7be5ced1a42f24b8c7 (patch)
tree363ebaf95feb93781a2bb7475ede0cffad872e54 /Build/source/texk/dvipdfm-x/mpost.c
parentc79fc3fdb2be02d134fcf136b440ba04475ee9b4 (diff)
Set the origin at (llx, lly) to match...: Typo and miror cleanup
git-svn-id: svn://tug.org/texlive/trunk@32219 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/dvipdfm-x/mpost.c')
-rw-r--r--Build/source/texk/dvipdfm-x/mpost.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/Build/source/texk/dvipdfm-x/mpost.c b/Build/source/texk/dvipdfm-x/mpost.c
index bd8867b2e36..9b12c8cf18a 100644
--- a/Build/source/texk/dvipdfm-x/mpost.c
+++ b/Build/source/texk/dvipdfm-x/mpost.c
@@ -55,7 +55,7 @@
/*
* Define the origin as (llx, lly) in order to
- * much the new xetex.def and dvipdfmx.def
+ * match the new xetex.def and dvipdfmx.def
*/
static double Xorigin, Yorigin;
@@ -243,14 +243,7 @@ mps_scan_bbox (const char **pp, const char *endptr, pdf_rect *bbox)
if (i < 4) {
return -1;
} else {
-/*
- bbox->llx = values[0];
- bbox->lly = values[1];
- bbox->urx = values[2];
- bbox->ury = values[3];
- The new xetex.def and dvipdfmx.def require
- bbox->llx = bbox->lly = 0.
-*/
+ /* The new xetex.def and dvipdfmx.def require bbox->llx = bbox->lly = 0. */
bbox->llx = 0;
bbox->lly = 0;
bbox->urx = values[2] - values[0];