]> git.eshelyaron.com Git - emacs.git/commitdiff
(syms_of_coding): Doc fix for inhibit-iso-escape-detection.
authorEli Zaretskii <eliz@gnu.org>
Sat, 22 Jul 2000 10:17:50 +0000 (10:17 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sat, 22 Jul 2000 10:17:50 +0000 (10:17 +0000)
src/fileio.c

index e2453a5fb266c95d784554ac1a77616a37349d35..54b719b4c6c7d9fd39db34e4d3928638e45a7bc1 100644 (file)
@@ -2546,6 +2546,12 @@ This is what happens in interactive use with M-x.")
   encoded_file = ENCODE_FILE (file);
   encoded_newname = ENCODE_FILE (newname);
 
+#ifdef DOS_NT
+  /* If the file names are identical but for the case, don't ask for
+     confirmation: they simply want to change the letter-case of the
+     file name.  */
+  if (NILP (Fstring_equal (Fdowncase (file), Fdowncase (newname))))
+#endif
   if (NILP (ok_if_already_exists)
       || INTEGERP (ok_if_already_exists))
     barf_or_query_if_file_exists (encoded_newname, "rename to it",