From 0a59111cbce8734fc2ac9e611ade35b235bad6c0 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Thu, 16 Oct 1997 18:25:42 +0000 Subject: [PATCH] (Fexpand_file_name): Avoid treating // specially even in a relative file name. --- src/fileio.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/fileio.c b/src/fileio.c index 4636193e577..b701d83fcd2 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -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]) -- 2.39.2