aboutsummaryrefslogtreecommitdiffstats
path: root/src/fileio.c
diff options
context:
space:
mode:
authorGeoff Voelker1998-04-23 23:42:09 +0000
committerGeoff Voelker1998-04-23 23:42:09 +0000
commitf9ba66ce95c4ec61dcdb2af9f19bc58da8a66c5d (patch)
treeb4aa21aa123fbd9bf8f41c1b2dfe5349bf3110e9 /src/fileio.c
parent719072f5c4e9ada34b0ce4d7b362f0f7e3b98a03 (diff)
downloademacs-f9ba66ce95c4ec61dcdb2af9f19bc58da8a66c5d.tar.gz
emacs-f9ba66ce95c4ec61dcdb2af9f19bc58da8a66c5d.zip
(Fcopy_file): Skip dev/inode check on Windows.
Diffstat (limited to 'src/fileio.c')
-rw-r--r--src/fileio.c2
1 files changed, 1 insertions, 1 deletions
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.")
2229 copyable by us. */ 2229 copyable by us. */
2230 input_file_statable_p = (fstat (ifd, &st) >= 0); 2230 input_file_statable_p = (fstat (ifd, &st) >= 0);
2231 2231
2232#if !defined (MSDOS) || __DJGPP__ > 1 2232#if !defined (DOS_NT) || __DJGPP__ > 1
2233 if (out_st.st_mode != 0 2233 if (out_st.st_mode != 0
2234 && st.st_dev == out_st.st_dev && st.st_ino == out_st.st_ino) 2234 && st.st_dev == out_st.st_dev && st.st_ino == out_st.st_ino)
2235 { 2235 {