]> git.eshelyaron.com Git - emacs.git/commitdiff
(Ffile_name_directory) [WINDOWSNT]: Remove previous
authorRichard M. Stallman <rms@gnu.org>
Thu, 6 Jun 1996 19:41:46 +0000 (19:41 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 6 Jun 1996 19:41:46 +0000 (19:41 +0000)
change, which was incorrect and isn't strictly required.

src/fileio.c

index 30ff2c4570bcec5b08c5488e6b291102b0a3bf80..a05a72e97bd80c24db39796a0791b1c228b8f951 100644 (file)
@@ -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] == ':')