From: Karl Heuer Date: Thu, 16 Oct 1997 18:25:42 +0000 (+0000) Subject: (Fexpand_file_name): Avoid treating // specially X-Git-Tag: emacs-20.3~2999 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0a59111cbce8734fc2ac9e611ade35b235bad6c0;p=emacs.git (Fexpand_file_name): Avoid treating // specially even in a relative file name. --- 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])