From 63daecda016a6d8f1241c07d7a06b154e31bfcb4 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Tue, 15 Aug 2017 19:17:41 +0300 Subject: [PATCH] Fix the MS-Windows build * src/fileio.c (Frename_file): Don't use ENOTSUP if it is equal to ENOSYS. (Bug#28097) (Bug#27986) --- src/fileio.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/fileio.c b/src/fileio.c index e557483ac4a..1b832be344d 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -2297,7 +2297,10 @@ This is what happens in interactive use with M-x. */) rename_errno = errno; switch (rename_errno) { - case EEXIST: case EINVAL: case ENOSYS: case ENOTSUP: + case EEXIST: case EINVAL: case ENOSYS: +#if ENOSYS != ENOTSUP + case ENOTSUP: +#endif barf_or_query_if_file_exists (newname, rename_errno == EEXIST, "rename to it", INTEGERP (ok_if_already_exists), -- 2.39.5