diff options
author | Hironobu Yamashita <h.y.acetaminophen@gmail.com> | 2020-02-29 05:03:37 +0000 |
---|---|---|
committer | Hironobu Yamashita <h.y.acetaminophen@gmail.com> | 2020-02-29 05:03:37 +0000 |
commit | b87a2ed9e8d9e82e0f2504479300654c5c64fcde (patch) | |
tree | a477fee15a13fa22dfaae57331e793edadca8c90 /Build/source | |
parent | 650c9d04db6c31b45ee726773dd8015c5bc37951 (diff) |
dvipdfm-x: revert the commit on 2019-06-30; need to reconsider
git-svn-id: svn://tug.org/texlive/trunk@53973 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source')
-rw-r--r-- | Build/source/texk/dvipdfm-x/ChangeLog | 7 | ||||
-rw-r--r-- | Build/source/texk/dvipdfm-x/pdfdev.c | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/Build/source/texk/dvipdfm-x/ChangeLog b/Build/source/texk/dvipdfm-x/ChangeLog index 65dd64bd44a..a3c1c0bc828 100644 --- a/Build/source/texk/dvipdfm-x/ChangeLog +++ b/Build/source/texk/dvipdfm-x/ChangeLog @@ -1,3 +1,10 @@ +2020-02-29 Hironobu Yamashita <h.y.acetaminophen@gmail.com> + + * pdfdev.c: Revert the commit on 2019-06-30: see + https://tug.org/pipermail/tex-live/2020-February/044855.html. + Note that the problem with fake-bold reappears! + https://tug.org/pipermail/dvipdfmx/2019-June/000014.html. + 2020-02-12 Akira Kakuto <kakuto@w32tex.org> * dvipdfmx.c: Fix a potential bug in set_default_pdf_filename(). diff --git a/Build/source/texk/dvipdfm-x/pdfdev.c b/Build/source/texk/dvipdfm-x/pdfdev.c index 49af5bb969b..f9d853bddc0 100644 --- a/Build/source/texk/dvipdfm-x/pdfdev.c +++ b/Build/source/texk/dvipdfm-x/pdfdev.c @@ -571,7 +571,7 @@ reset_text_state (void) /* * We need to reset the line matrix to handle slanted fonts. */ - pdf_doc_add_page_content(" q BT", 5); /* op: BT */ + pdf_doc_add_page_content(" BT", 3); /* op: BT */ /* * text_state.matrix is identity at top of page. * This sometimes write unnecessary "Tm"s when transition from @@ -619,7 +619,7 @@ graphics_mode (void) pdf_doc_add_page_content(text_state.is_mb ? ">]TJ" : ")]TJ", 4); /* op: TJ */ /* continue */ case TEXT_MODE: - pdf_doc_add_page_content(" ET Q", 5); /* op: ET */ + pdf_doc_add_page_content(" ET", 3); /* op: ET */ text_state.force_reset = 0; text_state.font_id = -1; break; |