diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2011-08-01 08:46:32 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2011-08-01 08:46:32 +0000 |
commit | 9728af2a7e87fddfa3a77ae6dc24755d3dda3e71 (patch) | |
tree | 64b82ddb79cab4231dfe15675ece3b8166d26fe2 /Build/source/texk/kpathsea/mingw32.h | |
parent | fb351593e88110ae50ef4977b77ef6c553258480 (diff) |
kpathsea: More changes to reduce diffs with W32TeX
git-svn-id: svn://tug.org/texlive/trunk@23300 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/mingw32.h')
-rw-r--r-- | Build/source/texk/kpathsea/mingw32.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/Build/source/texk/kpathsea/mingw32.h b/Build/source/texk/kpathsea/mingw32.h index 7bc15cc9c56..c32312c2fce 100644 --- a/Build/source/texk/kpathsea/mingw32.h +++ b/Build/source/texk/kpathsea/mingw32.h @@ -26,22 +26,6 @@ #define MAX_PIPES 128 #endif -/* On DOS, it's good to allow both \ and / between directories. */ -#ifndef IS_DIR_SEP -#define IS_DIR_SEP(ch) ((ch) == '/' || (ch) == '\\') -#endif -#ifndef IS_DEVICE_SEP -#define IS_DEVICE_SEP(ch) ((ch) == ':') -#endif -#ifndef NAME_BEGINS_WITH_DEVICE -#define NAME_BEGINS_WITH_DEVICE(name) (*(name) && IS_DEVICE_SEP((name)[1])) -#endif -/* On win32, UNC names are authorized */ -#ifndef IS_UNC_NAME -#define IS_UNC_NAME(name) (strlen(name)>=3 && IS_DIR_SEP(*name) \ - && IS_DIR_SEP(*(name+1)) && isalnum(*(name+2))) -#endif - #ifdef MAKE_KPSE_DLL /* libkpathsea internal only */ extern void init_user_info (void); |