diff options
Diffstat (limited to 'Build/source')
-rw-r--r-- | Build/source/texk/makejvf/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/makejvf/tfmread.c | 2 | ||||
-rw-r--r-- | Build/source/texk/makejvf/version.h | 2 |
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" |