diff options
author | Hironobu Yamashita <h.y.acetaminophen@gmail.com> | 2017-07-10 20:01:27 +0000 |
---|---|---|
committer | Hironobu Yamashita <h.y.acetaminophen@gmail.com> | 2017-07-10 20:01:27 +0000 |
commit | 3583b9a05b16d7f3d76c86b6f0a20fd5813a9128 (patch) | |
tree | f00475ee39b30d108f6209ae99b52b581fa62c08 /Build/source/texk/makejvf | |
parent | 68c3b365dcf761e32e909273eec624a6f095bdd2 (diff) |
makejvf/write.c: Fix a bug in -m option on UCS mode
git-svn-id: svn://tug.org/texlive/trunk@44772 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/makejvf')
-rw-r--r-- | Build/source/texk/makejvf/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/makejvf/write.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/Build/source/texk/makejvf/ChangeLog b/Build/source/texk/makejvf/ChangeLog index a122553d7e1..6b5913d0027 100644 --- a/Build/source/texk/makejvf/ChangeLog +++ b/Build/source/texk/makejvf/ChangeLog @@ -1,3 +1,7 @@ +2017-07-10 Hironobu Yamashita <h.y.acetaminophen@gmail.com> + + * write.c: Fix a bug in -m option on UCS mode. + 2017-07-01 Hironobu Yamashita <h.y.acetaminophen@gmail.com> * makejvf.1: More detailed description in English. diff --git a/Build/source/texk/makejvf/write.c b/Build/source/texk/makejvf/write.c index a4417e9d5db..121841a8f12 100644 --- a/Build/source/texk/makejvf/write.c +++ b/Build/source/texk/makejvf/write.c @@ -433,6 +433,7 @@ void writevfu(int code, FILE *fp) fputnum2(skip2,fp); } if (kanatfm) fputc(173+fidshift,fp); /* FONT_NUM_2 */ + fputc(129,fp); /* SET2 */ if (code == 0x2018) fputnum(0x2032,2,fp); /* char code */ else |