summaryrefslogtreecommitdiff
path: root/Build/source/texk/makejvf/write.c
diff options
context:
space:
mode:
authorHironobu Yamashita <h.y.acetaminophen@gmail.com>2018-02-02 13:17:22 +0000
committerHironobu Yamashita <h.y.acetaminophen@gmail.com>2018-02-02 13:17:22 +0000
commit6dc0e38210bb5d23f33d43fa66832c8c38d54d4a (patch)
tree166ddd97bb5d2b46d9f9109785140052338e2615 /Build/source/texk/makejvf/write.c
parent9f7307579d809c7eca4c350e128045715a77303c (diff)
makejvf: support SKIP property in GLUEKERN
git-svn-id: svn://tug.org/texlive/trunk@46519 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/makejvf/write.c')
-rw-r--r--Build/source/texk/makejvf/write.c32
1 files changed, 20 insertions, 12 deletions
diff --git a/Build/source/texk/makejvf/write.c b/Build/source/texk/makejvf/write.c
index dae91045ec6..c40cef92f98 100644
--- a/Build/source/texk/makejvf/write.c
+++ b/Build/source/texk/makejvf/write.c
@@ -321,12 +321,16 @@ void writevf(int code, FILE *fp)
goto outputj;
}
}
- 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);
+ if (enhanced) {
+#ifdef DEBUG
+ if (skip != -rightamount) {
+ fprintf(stderr,
+ "[DEBUG] Conflicting MOVERIGHT value for code %x,\n"
+ "[DEBUG] makejvf default: %08x\n"
+ "[DEBUG] suggested from JFM: %08x <= I'll use this ...\n",
+ code, skip, -rightamount);
+ }
+#endif
skip=-rightamount;
}
@@ -722,12 +726,16 @@ void writevfu(int code, FILE *fp)
goto outputu;
}
}
- 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);
+ if (enhanced) {
+#ifdef DEBUG
+ if (skip != -rightamount) {
+ fprintf(stderr,
+ "[DEBUG] Conflicting MOVERIGHT value for code %x,\n"
+ "[DEBUG] makejvf default: %08x\n"
+ "[DEBUG] suggested from JFM: %08x <= I'll use this ...\n",
+ code, skip, -rightamount);
+ }
+#endif
skip=-rightamount;
}