Changed all uses of ':' to PATH_SEPARATOR_CHAR.
authorRoland McGrath <roland@redhat.com>
Mon, 25 Jul 1994 23:34:32 +0000 (23:34 +0000)
committerRoland McGrath <roland@redhat.com>
Mon, 25 Jul 1994 23:34:32 +0000 (23:34 +0000)
vpath.c

diff --git a/vpath.c b/vpath.c
index 1d3ce618d88b8b47b9ab98e199e39a693fdf1b3e..804535781360cb750d64daff9d6d7ca8d7635ca9 100644 (file)
--- a/vpath.c
+++ b/vpath.c
@@ -177,7 +177,7 @@ construct_vpath_list (pattern, dirpath)
   maxelem = 2;
   p = dirpath;
   while (*p != '\0')
-    if (*p++ == ':' || isblank (*p))
+    if (*p++ == PATH_SEPARATOR_CHAR || isblank (*p))
       ++maxelem;
 
   vpath = (char **) xmalloc (maxelem * sizeof (char *));
@@ -185,7 +185,7 @@ construct_vpath_list (pattern, dirpath)
 
   /* Skip over any initial colons and blanks.  */
   p = dirpath;
-  while (*p == ':' || isblank (*p))
+  while (*p == PATH_SEPARATOR_CHAR || isblank (*p))
     ++p;
 
   elem = 0;
@@ -196,7 +196,7 @@ construct_vpath_list (pattern, dirpath)
 
       /* Find the end of this entry.  */
       v = p;
-      while (*p != '\0' && *p != ':' && !isblank (*p))
+      while (*p != '\0' && *p != PATH_SEPARATOR_CHAR && !isblank (*p))
        ++p;
 
       len = p - v;
@@ -225,7 +225,7 @@ construct_vpath_list (pattern, dirpath)
        }
 
       /* Skip over colons and blanks between entries.  */
-      while (*p == ':' || isblank (*p))
+      while (*p == PATH_SEPARATOR_CHAR || isblank (*p))
        ++p;
     }
 
@@ -461,7 +461,7 @@ print_vpath_data_base ()
 
       for (i = 0; v->searchpath[i] != 0; ++i)
        printf ("%s%c", v->searchpath[i],
-               v->searchpath[i + 1] == 0 ? '\n' : ':');
+               v->searchpath[i + 1] == 0 ? '\n' : PATH_SEPARATOR_CHAR);
     }
 
   if (vpaths == 0)
@@ -479,6 +479,7 @@ print_vpath_data_base ()
       fputs ("\n# General (`VPATH' variable) search path:\n# ", stdout);
 
       for (i = 0; path[i] != 0; ++i)
-       printf ("%s%c", path[i], path[i + 1] == 0 ? '\n' : ':');
+       printf ("%s%c", path[i],
+               path[i + 1] == 0 ? '\n' : PATH_SEPARATOR_CHAR);
     }
 }