# HG changeset patch # User Richard M. Stallman # Date 828041488 0 # Node ID 70388277dac0b668134e3d20be93d1ff48695eee # Parent 2b1cbbb96485ca875d6c2d97b8b2104ec797dd3a (Frename_file) [WINDOWSNT]: Remove conditional code. diff -r 2b1cbbb96485 -r 70388277dac0 src/fileio.c --- a/src/fileio.c Thu Mar 28 18:39:26 1996 +0000 +++ b/src/fileio.c Thu Mar 28 19:31:28 1996 +0000 @@ -2109,21 +2109,11 @@ #ifndef BSD4_1 if (0 > rename (XSTRING (file)->data, XSTRING (newname)->data)) #else -#ifdef WINDOWSNT - if (!MoveFile (XSTRING (file)->data, XSTRING (newname)->data)) -#else /* not WINDOWSNT */ if (0 > link (XSTRING (file)->data, XSTRING (newname)->data) || 0 > unlink (XSTRING (file)->data)) -#endif /* not WINDOWSNT */ #endif { -#ifdef WINDOWSNT - /* Why two? And why doesn't MS document what MoveFile will return? */ - if (GetLastError () == ERROR_FILE_EXISTS - || GetLastError () == ERROR_ALREADY_EXISTS) -#else /* not WINDOWSNT */ if (errno == EXDEV) -#endif /* not WINDOWSNT */ { Fcopy_file (file, newname, /* We have already prompted if it was an integer,