From a0886a8ffd3b0493ac13a6aa8fc261ba861c869b Mon Sep 17 00:00:00 2001 From: Akira Kakuto Date: Mon, 5 Aug 2013 23:23:29 +0000 Subject: 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 --- Build/source/texk/web2c/luatexdir/ChangeLog | 5 +++++ Build/source/texk/web2c/luatexdir/font/writecff.w | 2 ++ 2 files changed, 7 insertions(+) (limited to 'Build/source/texk/web2c') 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 + + * 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 * 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); -- cgit v1.2.3