summaryrefslogtreecommitdiff
path: root/Build/source/texk/makejvf/write.c
diff options
context:
space:
mode:
authorHironobu Yamashita <h.y.acetaminophen@gmail.com>2017-07-16 03:19:50 +0000
committerHironobu Yamashita <h.y.acetaminophen@gmail.com>2017-07-16 03:19:50 +0000
commit85eb8925e6fb9546abdd206a07fa98e5388932cc (patch)
tree4f29b0e4c399a8ca001885d11460e56a9d23949c /Build/source/texk/makejvf/write.c
parent0cc8cd788ababceacfde0bd3b48840fd9fc5cb7a (diff)
makejvf: Add enhanced mode (version 20170716)
git-svn-id: svn://tug.org/texlive/trunk@44817 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/makejvf/write.c')
-rw-r--r--Build/source/texk/makejvf/write.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/Build/source/texk/makejvf/write.c b/Build/source/texk/makejvf/write.c
index ac7641e3c64..2e4c07332f2 100644
--- a/Build/source/texk/makejvf/write.c
+++ b/Build/source/texk/makejvf/write.c
@@ -306,6 +306,14 @@ void writevf(int code, FILE *fp)
break;
}
+ if (skip != -rightamount && enhanced) {
+ fprintf(stderr,
+ "[Warning] Conflicting MOVERIGHT value for code %x,\n"
+ "[Warning] makejvf default: %08x\n"
+ "[Warning] suggested from JFM: %08x <= I'll use this ...\n",
+ code, skip, -rightamount);
+ skip=-rightamount;
+ }
if (kanatfm)
cc=4;
else
@@ -686,6 +694,14 @@ void writevfu(int code, FILE *fp)
break;
}
+ if (skip != -rightamount && enhanced) {
+ fprintf(stderr,
+ "[Warning] Conflicting MOVERIGHT value for code %x,\n"
+ "[Warning] makejvf default: %08x\n"
+ "[Warning] suggested from JFM: %08x <= I'll use this ...\n",
+ code, skip, -rightamount);
+ skip=-rightamount;
+ }
if (kanatfm)
cc=4;
else