summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea/xdirname.c
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2017-12-27 05:44:22 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2017-12-27 05:44:22 +0000
commitdce0d80ffa4838ff1378eeb467fdb980557636d3 (patch)
treee3c17558eea74883177052a2ef9c4982287220c0 /Build/source/texk/kpathsea/xdirname.c
parent858968cc982a1e96101b89d7867202c66f2ebaf4 (diff)
kpathsea/xdirname.c: remove IS_KANJI test for UNC names
git-svn-id: svn://tug.org/texlive/trunk@46147 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/xdirname.c')
-rw-r--r--Build/source/texk/kpathsea/xdirname.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/Build/source/texk/kpathsea/xdirname.c b/Build/source/texk/kpathsea/xdirname.c
index 0aab9b4b001..dd9a02ffbfb 100644
--- a/Build/source/texk/kpathsea/xdirname.c
+++ b/Build/source/texk/kpathsea/xdirname.c
@@ -43,15 +43,9 @@ xdirname (const_string name)
limit = 2;
} else if (IS_UNC_NAME(name)) {
for (limit = 2; name[limit] && !IS_DIR_SEP (name[limit]); limit++)
-#if defined(WIN32) && defined(KPSE_COMPAT_API)
- if (IS_KANJI(name+limit)) limit++
-#endif
;
if (name[limit++] && name[limit] && !IS_DIR_SEP (name[limit])) {
for (; name[limit] && !IS_DIR_SEP (name[limit]); limit++)
-#if defined(WIN32) && defined(KPSE_COMPAT_API)
- if (IS_KANJI(name+limit)) limit++
-#endif
;
limit--;
} else