summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-06-06 19:41:46 +0000
committerRichard M. Stallman <rms@gnu.org>1996-06-06 19:41:46 +0000
commit46024fb8387189d54d702d5780329e8c4ffd152d (patch)
tree05807df6f9a458d9a86ed19a43c46911bbae5803
parent6eed7b73297eef22d97568f4c45afc7c4d030ccd (diff)
downloademacs-46024fb8387189d54d702d5780329e8c4ffd152d.tar.gz
(Ffile_name_directory) [WINDOWSNT]: Remove previous
change, which was incorrect and isn't strictly required.
-rw-r--r--src/fileio.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 30ff2c4570b..a05a72e97bd 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -351,12 +351,6 @@ on VMS, perhaps instead a string ending in `:', `]' or `>'.")
if (p == beg)
return Qnil;
-#ifdef WINDOWSNT
- /* We can consider the partial UNC name //machine to be a
- directory name, but not just // on its own. */
- if (p == beg + 1 && IS_DIRECTORY_SEP (p[-1]))
- return Qnil;
-#endif
#ifdef DOS_NT
/* Expansion of "c:" to drive and default directory. */
if (p == beg + 2 && beg[1] == ':')