From: Richard M. Stallman Date: Thu, 6 Jun 1996 19:41:46 +0000 (+0000) Subject: (Ffile_name_directory) [WINDOWSNT]: Remove previous X-Git-Tag: emacs-19.34~519 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1f4cd937080fb5e936e1d7be7c0b023b45bebcb7;p=emacs.git (Ffile_name_directory) [WINDOWSNT]: Remove previous change, which was incorrect and isn't strictly required. --- 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] == ':')