diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2013-09-27 07:10:50 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2013-09-27 07:10:50 +0000 |
commit | 1f4b1fd31c0975d03fd5f5834e0d479bc8ea255d (patch) | |
tree | 9d9563c22f7128fbfbd69d5e38dd97cb1008c630 | |
parent | 42a39040ba23cdd0fd5bb9bdeed68d597b0678e5 (diff) |
git-svn-id: svn://tug.org/texlive/trunk@31782 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Build/source/texk/web2c/pdftexdir/ChangeLog | 7 | ||||
-rw-r--r-- | Build/source/texk/web2c/pdftexdir/writet1.c | 4 |
2 files changed, 10 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/pdftexdir/ChangeLog b/Build/source/texk/web2c/pdftexdir/ChangeLog index c8536eb3a5f..fb6ca3c1068 100644 --- a/Build/source/texk/web2c/pdftexdir/ChangeLog +++ b/Build/source/texk/web2c/pdftexdir/ChangeLog @@ -1,3 +1,10 @@ +2013-09-27 Akira Kakuto <kakuto@fuk.kindai.ac.jp> + + * writet1.c (t1_subset_ascii_part): Remove UniqueID in subsets. + Report from Christian Zietz (czietz/gmx/net), + tex-k 01 Sep 2013 11:25:47 and previous. + (Imported from dvipsk.) + 2013-08-02 Peter Breitenlohner <peb@mppmu.mpg.de> * ttf2afm.test, tests/postV[37].{afm.ttf}: New test and data. diff --git a/Build/source/texk/web2c/pdftexdir/writet1.c b/Build/source/texk/web2c/pdftexdir/writet1.c index 02a5a483a73..54bde97f321 100644 --- a/Build/source/texk/web2c/pdftexdir/writet1.c +++ b/Build/source/texk/web2c/pdftexdir/writet1.c @@ -1312,7 +1312,9 @@ static void t1_subset_ascii_part(void) t1_getline(); while (!t1_prefix("/Encoding")) { t1_scan_param(); - t1_putline(); + if (!(t1_prefix("/UniqueID") + && !strncmp(t1_line_array + strlen(t1_line_array) -4, "def", 3))) + t1_putline(); t1_getline(); } glyph_names = t1_builtin_enc(); |