]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fcopy_file): Skip dev/inode check on Windows.
authorGeoff Voelker <voelker@cs.washington.edu>
Thu, 23 Apr 1998 23:42:09 +0000 (23:42 +0000)
committerGeoff Voelker <voelker@cs.washington.edu>
Thu, 23 Apr 1998 23:42:09 +0000 (23:42 +0000)
src/fileio.c

index 0e6eb79f6bb81f44bef850b3d45788936912cca3..57db26dc8ff57302fca4dbe903405aaaf0ea4341 100644 (file)
@@ -2229,7 +2229,7 @@ A prefix arg makes KEEP-TIME non-nil.")
      copyable by us. */
   input_file_statable_p = (fstat (ifd, &st) >= 0);
 
-#if !defined (MSDOS) || __DJGPP__ > 1
+#if !defined (DOS_NT) || __DJGPP__ > 1
   if (out_st.st_mode != 0
       && st.st_dev == out_st.st_dev && st.st_ino == out_st.st_ino)
     {