summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea/c-pathch.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/kpathsea/c-pathch.h')
-rw-r--r--Build/source/texk/kpathsea/c-pathch.h34
1 files changed, 14 insertions, 20 deletions
diff --git a/Build/source/texk/kpathsea/c-pathch.h b/Build/source/texk/kpathsea/c-pathch.h
index cc8b936abf8..76352f82a6d 100644
--- a/Build/source/texk/kpathsea/c-pathch.h
+++ b/Build/source/texk/kpathsea/c-pathch.h
@@ -76,27 +76,21 @@
/* What separates elements in environment variable path lists? */
#ifndef ENV_SEP
#ifdef VMS
-#define ENV_SEP ','
-#define ENV_SEP_STRING ","
+# define ENV_SEP ','
+# define ENV_SEP_STRING ","
+#elif defined (DOSISH)
+# define ENV_SEP ';'
+# define ENV_SEP_STRING ";"
+#elif defined (AMIGA)
+# define ENV_SEP ';'
+# define ENV_SEP_STRING ";"
+#elif defined (VMCMS)
+# define ENV_SEP ' '
+# define ENV_SEP_STRING " "
#else
-#ifdef DOSISH
-#define ENV_SEP ';'
-#define ENV_SEP_STRING ";"
-#else
-#ifdef AMIGA
-#define ENV_SEP ';'
-#define ENV_SEP_STRING ";"
-#else
-#ifdef VMCMS
-#define ENV_SEP ' '
-#define ENV_SEP_STRING " "
-#else
-#define ENV_SEP ':'
-#define ENV_SEP_STRING ":"
-#endif /* not VM/CMS */
-#endif /* not AMIGA */
-#endif /* not DOS */
-#endif /* not VMS */
+# define ENV_SEP ':'
+# define ENV_SEP_STRING ":"
+#endif
#endif /* not ENV_SEP */
#ifndef IS_ENV_SEP