mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-15 09:47:20 +00:00
(syms_of_coding): Doc fix for inhibit-iso-escape-detection.
This commit is contained in:
parent
5be757c32b
commit
bc77278f53
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user