(Fexpand_file_name): Avoid treating // specially
authorKarl Heuer <kwzh@gnu.org>
Thu, 16 Oct 1997 18:25:42 +0000 (18:25 +0000)
committerKarl Heuer <kwzh@gnu.org>
Thu, 16 Oct 1997 18:25:42 +0000 (18:25 +0000)
even in a relative file name.

src/fileio.c

index 4636193..b701d83 100644 (file)
@@ -1378,17 +1378,6 @@ See also the function `substitute-in-file-name'.")
        {
          *o++ = *p++;
        }
-      else if (IS_DIRECTORY_SEP (p[0]) && IS_DIRECTORY_SEP (p[1])
-#if defined (APOLLO) || defined (WINDOWSNT)
-              /* // at start of filename is meaningful in Apollo
-                 and WindowsNT systems.  */
-              && o != target
-#endif /* APOLLO || WINDOWSNT */
-              )
-       {
-         o = target;
-         p++;
-       }
       else if (IS_DIRECTORY_SEP (p[0])
               && p[1] == '.'
               && (IS_DIRECTORY_SEP (p[2])