summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/luatexdir
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2016-03-15 22:14:10 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2016-03-15 22:14:10 +0000
commita2199d3694b6209bcddd04bc8f23ec9378191ff6 (patch)
tree86b48074c0e28479666e71ba4663f2a9b1252a4f /Build/source/texk/web2c/luatexdir
parentfc81437ea2629854b88afbfcac2be93cacf93bc1 (diff)
web2c/luatexdir: sync with the upstream
git-svn-id: svn://tug.org/texlive/trunk@40037 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/luatexdir')
-rw-r--r--Build/source/texk/web2c/luatexdir/font/writet1.w8
1 files changed, 4 insertions, 4 deletions
diff --git a/Build/source/texk/web2c/luatexdir/font/writet1.w b/Build/source/texk/web2c/luatexdir/font/writet1.w
index f328dbd17fc..5288b785f37 100644
--- a/Build/source/texk/web2c/luatexdir/font/writet1.w
+++ b/Build/source/texk/web2c/luatexdir/font/writet1.w
@@ -1709,15 +1709,15 @@ void writet1(PDF pdf, fd_entry * fd)
t1_save_offset = 0;
if (!is_subsetted(fd_cur->fm)) { /* include entire font */
- if (!(fd->ff_found = t1_open_fontfile(filetype_subset)))
+ if (!(fd->ff_found = t1_open_fontfile(filetype_font)))
return;
t1_include(pdf);
- t1_close_font_file(7);
+ t1_close_font_file(filetype_font);
xfree(t1_buffer);
return;
}
/* partial downloading */
- if (!(fd->ff_found = t1_open_fontfile(filetype_font)))
+ if (!(fd->ff_found = t1_open_fontfile(filetype_subset)))
return;
t1_subset_ascii_part(pdf);
t1_start_eexec(pdf);
@@ -1726,7 +1726,7 @@ void writet1(PDF pdf, fd_entry * fd)
t1_read_subrs(pdf);
t1_subset_charstrings(pdf);
t1_subset_end(pdf);
- t1_close_font_file(3);
+ t1_close_font_file(filetype_subset);
xfree(t1_buffer);
}