diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2013-12-01 16:06:38 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2013-12-01 16:06:38 +0000 |
commit | 4813cb6776a1c73bf8e5fea4eec861bb5aec7467 (patch) | |
tree | b1964c427038c0a35c6af569d039417f3d310034 /Build/source/texk/kpathsea/progname.c | |
parent | d1f96f6033d08c0e712307ddc9bc1f63a8540742 (diff) |
Support KANJI file name in (e)upTeX on Windows (T. Tanaka)
git-svn-id: svn://tug.org/texlive/trunk@32290 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/progname.c')
-rw-r--r-- | Build/source/texk/kpathsea/progname.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Build/source/texk/kpathsea/progname.c b/Build/source/texk/kpathsea/progname.c index ba43bd8679f..5952936579b 100644 --- a/Build/source/texk/kpathsea/progname.c +++ b/Build/source/texk/kpathsea/progname.c @@ -501,12 +501,13 @@ kpathsea_set_program_name (kpathsea kpse, const_string argv0, } #if defined(WIN32) - cp = GetOEMCP(); + cp = GetACP(); if (cp == 932 || cp == 936 || cp == 950) { is_cp932_system = cp; } else is_cp932_system = 0; + file_system_codepage = AreFileApisANSI() ? GetACP() : GetOEMCP(); #if defined(__MINGW32__) /* Set various info about user. Among many things, |