diff options
author | Hironobu Yamashita <h.y.acetaminophen@gmail.com> | 2017-07-11 22:38:37 +0000 |
---|---|---|
committer | Hironobu Yamashita <h.y.acetaminophen@gmail.com> | 2017-07-11 22:38:37 +0000 |
commit | cf511642d5cba1b4a975cafdd92220d4d054c28b (patch) | |
tree | bdadc1db1539969c407fe5ee1d819b6b98f873d2 /Build/source/texk/makejvf/write.c | |
parent | 972f02fef1a69cbf44309aa84d431c60b95bf5b2 (diff) |
makejvf/write.c: Fix a bug when -3 and -K are used at the same time
git-svn-id: svn://tug.org/texlive/trunk@44775 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/makejvf/write.c')
-rw-r--r-- | Build/source/texk/makejvf/write.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Build/source/texk/makejvf/write.c b/Build/source/texk/makejvf/write.c index 121841a8f12..7d58728940d 100644 --- a/Build/source/texk/makejvf/write.c +++ b/Build/source/texk/makejvf/write.c @@ -520,9 +520,9 @@ void writevfu(int code, FILE *fp) if (jfm_id == 9 && minute) { /* 縦書き時はミニュートへ変換 */ if (afp) { if (code == 0x2019) - sprintf(buf2,"CH <216C>"); + sprintf(buf2,"CH <2032>"); else - sprintf(buf2,"CH <216D>"); + sprintf(buf2,"CH <2033>"); rewind(afp); while (fgets(buf,255,afp)!=NULL) { if (jfm_id==9 && !strncmp(buf,"FontBBox ",9)) { @@ -762,10 +762,12 @@ void writevfu(int code, FILE *fp) } } else { - if (kanatfm || code>=0x10000) + if (kanatfm) cc=4; else cc=3; + if (code>=0x10000) + cc+=1; if (skip) cc+=numcount(skip)+1; if (skip2) |