From ba2c33bcc94b39c1eabe62fee838173aa14e76c4 Mon Sep 17 00:00:00 2001 From: Akira Kakuto Date: Tue, 28 Jun 2016 10:20:13 +0000 Subject: kpathsea: Eliminate global and static variables (w32 only) git-svn-id: svn://tug.org/texlive/trunk@41557 c570f23f-e606-0410-a88d-b1316a301751 --- Build/source/texk/kpathsea/expand.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Build/source/texk/kpathsea/expand.c') diff --git a/Build/source/texk/kpathsea/expand.c b/Build/source/texk/kpathsea/expand.c index d9eadd4bc14..be01fda9ba9 100644 --- a/Build/source/texk/kpathsea/expand.c +++ b/Build/source/texk/kpathsea/expand.c @@ -1,7 +1,7 @@ /* expand.c: general expansion. Copyright 1993, 1994, 1995, 1996, 1997, 2005, 2008, 2009, 2011, - 2012 Karl Berry. + 2012, 2016 Karl Berry. Copyright 1997-2005 Olaf Weber. This library is free software; you can redistribute it and/or @@ -226,7 +226,7 @@ kpathsea_path_expand (kpathsea kpse, const_string path) for (p = zpath; *p; p++) if (*p == '\\') *p = '/'; - else if (IS_KANJI(p)) + else if (kpathsea_IS_KANJI(kpse, p)) p++; ypath = zpath; @@ -343,7 +343,7 @@ brace_expand (kpathsea kpse, const_string *text) for (p+=2; *p!='}';++p); } #if defined(WIN32) - else if (IS_KANJI(p)) + else if (kpathsea_IS_KANJI(kpse, p)) p++; #endif } -- cgit v1.2.3