summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvipdfm-x/specials.c
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2020-06-27 22:12:55 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2020-06-27 22:12:55 +0000
commit89512d1f7c29187e836317d91edd4f189d2f2296 (patch)
treefae937be9bd5d2f7341904e54753a618fabed614 /Build/source/texk/dvipdfm-x/specials.c
parente9f99c166c22a7382f45b1ce1415159345ea4747 (diff)
Workaround for \phantom text annot issue (S. Hirata).
git-svn-id: svn://tug.org/texlive/trunk@55681 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/dvipdfm-x/specials.c')
-rw-r--r--Build/source/texk/dvipdfm-x/specials.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/Build/source/texk/dvipdfm-x/specials.c b/Build/source/texk/dvipdfm-x/specials.c
index 15f0d1706f4..735e51e6f32 100644
--- a/Build/source/texk/dvipdfm-x/specials.c
+++ b/Build/source/texk/dvipdfm-x/specials.c
@@ -104,7 +104,24 @@ spc_suspend_annot (struct spc_env *spe)
return 0;
}
+/* Added this for supporting bann-eann erea only with \phantom text */
+int
+spc_is_tracking_boxes (struct spc_env *spe)
+{
+ return dvi_is_tracking_boxes();
+}
+
+void
+spc_set_linkmode (struct spc_env *spe, int mode)
+{
+ dvi_set_linkmode(mode);
+}
+void
+spc_set_phantom (struct spc_env *spe, double height, double depth)
+{
+ dvi_set_phantom_height(height, depth);
+}
static struct ht_table *named_objects = NULL;