diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2018-03-26 03:28:30 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2018-03-26 03:28:30 +0000 |
commit | 22323ed7a8d9e63c50892a43f089b64b4f16e626 (patch) | |
tree | a87716c342c2a69a2785739dfa72cda581ee82f4 | |
parent | 1956f03d9a3bda20a9c3a9127296fffa265e07ef (diff) |
use UTF-8 as a default encoding also on Windows
git-svn-id: svn://tug.org/texlive/trunk@47125 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Build/source/texk/web2c/pmpostdir/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/web2c/pmpostdir/pmpost.ch | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/pmpostdir/ChangeLog b/Build/source/texk/web2c/pmpostdir/ChangeLog index ac176ded247..14728c8fff6 100644 --- a/Build/source/texk/web2c/pmpostdir/ChangeLog +++ b/Build/source/texk/web2c/pmpostdir/ChangeLog @@ -1,3 +1,8 @@ +2018-03-26 Akira Kakuto <kakuto@fuk.kindai.ac.jp> + + * pmpost.ch: Use UTF-8 as a default encoding also on + Windows. + 2018-02-19 Akira Kakuto <kakuto@fuk.kindai.ac.jp> * pmp.ch: Adapt to the new mp.w. diff --git a/Build/source/texk/web2c/pmpostdir/pmpost.ch b/Build/source/texk/web2c/pmpostdir/pmpost.ch index 503de8bb9c4..abd3c28a04f 100644 --- a/Build/source/texk/web2c/pmpostdir/pmpost.ch +++ b/Build/source/texk/web2c/pmpostdir/pmpost.ch @@ -267,7 +267,7 @@ else #else enable_UPTEX (false); #if defined(WIN32) - set_enc_string("sjis", "sjis"); + set_enc_string("utf8", "sjis"); #else set_enc_string("utf8", "euc"); #endif |