diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2013-08-05 23:23:29 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2013-08-05 23:23:29 +0000 |
commit | a0886a8ffd3b0493ac13a6aa8fc261ba861c869b (patch) | |
tree | 0a67c4f92ade1f76d8cb2d746bf2b85c8904c46d /Build/source | |
parent | e92c7ddb3644faba47cf5b3b46bf0fbc01e900d7 (diff) |
Fix a bug in writecff.w: There was not pdf_end_dict() for the corresponding pdf_begin_dict().
git-svn-id: svn://tug.org/texlive/trunk@31358 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source')
-rw-r--r-- | Build/source/texk/web2c/luatexdir/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/web2c/luatexdir/font/writecff.w | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/luatexdir/ChangeLog b/Build/source/texk/web2c/luatexdir/ChangeLog index ac3061a279d..43afaa0926c 100644 --- a/Build/source/texk/web2c/luatexdir/ChangeLog +++ b/Build/source/texk/web2c/luatexdir/ChangeLog @@ -1,3 +1,8 @@ +2013-08-06 Akira Kakuto <kakuto@fuk.kindai.ac.jp> + + * font/writecff.w: Fix a bug in write_cid_cff(). There was not + pdf_end_dict() for the corresponding pdf_begin_dict(). + 2013-07-30 Peter Breitenlohner <peb@mppmu.mpg.de> * font/writettf.w: Treat unknown 'post' table versions diff --git a/Build/source/texk/web2c/luatexdir/font/writecff.w b/Build/source/texk/web2c/luatexdir/font/writecff.w index a2cd9aeda24..6637425bea5 100644 --- a/Build/source/texk/web2c/luatexdir/font/writecff.w +++ b/Build/source/texk/web2c/luatexdir/font/writecff.w @@ -3389,6 +3389,8 @@ void write_cid_cff(PDF pdf, cff_font * cffont, fd_entry * fd) } pdf_begin_obj(pdf, cidset, OBJSTM_NEVER); pdf_begin_dict(pdf); + pdf_dict_add_streaminfo(pdf); + pdf_end_dict(pdf); pdf_begin_stream(pdf); pdf_out_block(pdf, stream, l); pdf_end_stream(pdf); |