Mercurial > emacs
changeset 20074:0b680b922b56
(Fexpand_file_name): Avoid treating // specially
even in a relative file name.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Thu, 16 Oct 1997 18:25:42 +0000 |
parents | 74c909547230 |
children | de449ef32afd |
files | src/fileio.c |
diffstat | 1 files changed, 0 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/src/fileio.c Thu Oct 16 18:22:36 1997 +0000 +++ b/src/fileio.c Thu Oct 16 18:25:42 1997 +0000 @@ -1378,17 +1378,6 @@ { *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])