From: Geoff Voelker Date: Thu, 23 Apr 1998 23:42:09 +0000 (+0000) Subject: (Fcopy_file): Skip dev/inode check on Windows. X-Git-Tag: emacs-20.3~1337 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f9ba66ce95c4ec61dcdb2af9f19bc58da8a66c5d;p=emacs.git (Fcopy_file): Skip dev/inode check on Windows. --- diff --git a/src/fileio.c b/src/fileio.c index 0e6eb79f6bb..57db26dc8ff 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -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) {