summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/luatexdir/pdf/pdfimage.w
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2015-11-14 00:48:08 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2015-11-14 00:48:08 +0000
commit64322869cd45fa0029198b6ef544363a0cf49eb6 (patch)
treefaa34b755a1bd7b9b5ca4a66d204deebf841d119 /Build/source/texk/web2c/luatexdir/pdf/pdfimage.w
parent6d37525a79984eea934633c34944113831e3fecb (diff)
web2c/luatexdir: Sync with the upstream trunk.
git-svn-id: svn://tug.org/texlive/trunk@38844 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/pdf/pdfimage.w')
-rw-r--r--Build/source/texk/web2c/luatexdir/pdf/pdfimage.w4
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/luatexdir/pdf/pdfimage.w b/Build/source/texk/web2c/luatexdir/pdf/pdfimage.w
index f9b6cf52619..29795990eab 100644
--- a/Build/source/texk/web2c/luatexdir/pdf/pdfimage.w
+++ b/Build/source/texk/web2c/luatexdir/pdf/pdfimage.w
@@ -145,10 +145,10 @@ void place_img(PDF pdf, image_dict * idict, scaled_whd dim, int transform)
void pdf_place_image(PDF pdf, halfword p)
{
scaled_whd dim;
- image_dict *idict = idict_array[pdf_ximage_index(p)];
+ image_dict *idict = idict_array[rule_index(p)];
assert(idict != NULL);
dim.wd = width(p);
dim.ht = height(p);
dim.dp = depth(p);
- place_img(pdf, idict, dim, pdf_ximage_transform(p));
+ place_img(pdf, idict, dim, rule_transform(p));
}