summaryrefslogtreecommitdiff
path: root/Build/source/texk/makejvf
diff options
context:
space:
mode:
authorHironobu Yamashita <h.y.acetaminophen@gmail.com>2018-08-18 10:56:05 +0000
committerHironobu Yamashita <h.y.acetaminophen@gmail.com>2018-08-18 10:56:05 +0000
commit394bc1716a78b883197662411d86c3c5185e6a78 (patch)
tree7780e524de865fae2071292821cf6d98df08820a /Build/source/texk/makejvf
parent23a53e34ec5000b9501fd58c7c0fa777faf73e8f (diff)
makejvf: update
git-svn-id: svn://tug.org/texlive/trunk@48428 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/makejvf')
-rw-r--r--Build/source/texk/makejvf/ChangeLog5
-rw-r--r--Build/source/texk/makejvf/tfmread.c2
-rw-r--r--Build/source/texk/makejvf/version.h2
3 files changed, 7 insertions, 2 deletions
diff --git a/Build/source/texk/makejvf/ChangeLog b/Build/source/texk/makejvf/ChangeLog
index 5eeaedd51ab..cad2ecdf291 100644
--- a/Build/source/texk/makejvf/ChangeLog
+++ b/Build/source/texk/makejvf/ChangeLog
@@ -1,3 +1,8 @@
+2018-08-18 Hironobu Yamashita <h.y.acetaminophen@gmail.com>
+
+ * tfmread.c: Do not check GLUEKERN table in non-enhanced mode.
+ * version.h: Bump version.
+
2018-03-15 TANAKA Takuji <ttk@t-lab.opal.ne.jp>
* usrtable.c: Do not initialize CHARSET flag at
diff --git a/Build/source/texk/makejvf/tfmread.c b/Build/source/texk/makejvf/tfmread.c
index 7b0dac0d407..dd77a91b082 100644
--- a/Build/source/texk/makejvf/tfmread.c
+++ b/Build/source/texk/makejvf/tfmread.c
@@ -26,7 +26,7 @@ int jfmread(int kcode)
w = width[w_ind];
rightamount = 0;
- if (w != zw && ctype > 0) {
+ if (enhanced && w != zw && ctype > 0) {
/* get natural length of JFM glue between <type0> and <type of kcode> */
tag = char_info[0*4+2] % 4;
if (tag == 1) {
diff --git a/Build/source/texk/makejvf/version.h b/Build/source/texk/makejvf/version.h
index 6faea53d1c5..8ec44b90bc0 100644
--- a/Build/source/texk/makejvf/version.h
+++ b/Build/source/texk/makejvf/version.h
@@ -1,2 +1,2 @@
-#define VERSION "20180315"
+#define VERSION "20180818"
#define BUG_ADDRESS "issue@texjp.org"