summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorHironobu Yamashita <h.y.acetaminophen@gmail.com>2022-05-10 15:30:12 +0000
committerHironobu Yamashita <h.y.acetaminophen@gmail.com>2022-05-10 15:30:12 +0000
commit5a2458324c884ce39c04ef2f08a3d033bcc4d3b8 (patch)
treed445769fd9d1f16415f15cd712a53d2f2379010c /Build
parentaf6526e0a5ba31d986d04850e03c8722fb064917 (diff)
makejvf: fix DESIGNSIZE
git-svn-id: svn://tug.org/texlive/trunk@63275 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r--Build/source/texk/makejvf/ChangeLog6
-rw-r--r--Build/source/texk/makejvf/write.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/Build/source/texk/makejvf/ChangeLog b/Build/source/texk/makejvf/ChangeLog
index 5e08a37f299..08022f4e222 100644
--- a/Build/source/texk/makejvf/ChangeLog
+++ b/Build/source/texk/makejvf/ChangeLog
@@ -1,3 +1,9 @@
+2022-05-10 Hironobu Yamashita <h.y.acetaminophen@gmail.com>
+
+ * write.c: The DESIGNSIZE of output VF should be consistent with
+ that of input JFM.
+ https://github.com/texjporg/tex-jp-build/issues/140
+
2022-01-21 TANAKA Takuji <ttk@t-lab.opal.ne.jp>
* uniblock.c, main.c: Update references Unicode blocks Blocks-14.0.0.txt.
diff --git a/Build/source/texk/makejvf/write.c b/Build/source/texk/makejvf/write.c
index d2129137e5f..ad73b767c69 100644
--- a/Build/source/texk/makejvf/write.c
+++ b/Build/source/texk/makejvf/write.c
@@ -24,7 +24,7 @@ FILE *vfopen(char *name)
fputc(202,fp); /* ID */
fputc(0,fp); /* comment size */
fputnum(0,4,fp); /* TFM check sum */
- fputnum(10*(1<<20),4,fp); /* TFM design size */
+ fputnum(unit,4,fp); /* TFM design size */
fputc(243,fp); /* fnt_def1 */
fputc(1+fidshift,fp); /* Font ID */