From: Eli Zaretskii Date: Tue, 4 Dec 2012 18:48:01 +0000 (+0200) Subject: Fix another instance of bug #12933 with non-ASCII file names on Windows. X-Git-Tag: emacs-24.2.91~53 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2e7cddd30317b7951c5425a5769ac9f33136f72f;p=emacs.git Fix another instance of bug #12933 with non-ASCII file names on Windows. src/fileio.c (file_name_as_directory, directory_file_name) [DOS_NT]: Encode the file name before passing it to dostounix_filename, in case it will downcase it (under w32-downcase-file-names). --- diff --git a/src/ChangeLog b/src/ChangeLog index d3d6d3969c8..6d2cd720672 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,10 @@ +2012-12-04 Eli Zaretskii + + * fileio.c (file_name_as_directory, directory_file_name) [DOS_NT]: + Encode the file name before passing it to dostounix_filename, in + case it will downcase it (under w32-downcase-file-names). + (Bug#12933) + 2012-12-01 Chong Yidong * fileio.c (Vauto_save_list_file_name): Doc fix. diff --git a/src/fileio.c b/src/fileio.c index 490116dbc5c..77700ff5a5f 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -455,7 +455,7 @@ get a current directory to run processes in. */) /* Convert from file name SRC of length SRCLEN to directory name in DST. On UNIX, just make sure there is a terminating /. - Return the length of DST. */ + Return the length of DST in bytes. */ static ptrdiff_t file_name_as_directory (char *dst, const char *src, ptrdiff_t srclen) @@ -477,7 +477,14 @@ file_name_as_directory (char *dst, const char *src, ptrdiff_t srclen) srclen++; } #ifdef DOS_NT - dostounix_filename (dst); + { + Lisp_Object tem_fn = make_specified_string (dst, -1, srclen, 1); + + tem_fn = ENCODE_FILE (tem_fn); + dostounix_filename (SSDATA (tem_fn)); + tem_fn = DECODE_FILE (tem_fn); + memcpy (dst, SSDATA (tem_fn), (srclen = SBYTES (tem_fn)) + 1); + } #endif return srclen; } @@ -519,7 +526,7 @@ For a Unix-syntax file name, just appends a slash. */) /* Convert from directory name SRC of length SRCLEN to file name in DST. On UNIX, just make sure there isn't - a terminating /. Return the length of DST. */ + a terminating /. Return the length of DST in bytes. */ static ptrdiff_t directory_file_name (char *dst, char *src, ptrdiff_t srclen) @@ -538,7 +545,14 @@ directory_file_name (char *dst, char *src, ptrdiff_t srclen) srclen--; } #ifdef DOS_NT - dostounix_filename (dst); + { + Lisp_Object tem_fn = make_specified_string (dst, -1, srclen, 1); + + tem_fn = ENCODE_FILE (tem_fn); + dostounix_filename (SSDATA (tem_fn)); + tem_fn = DECODE_FILE (tem_fn); + memcpy (dst, SSDATA (tem_fn), (srclen = SBYTES (tem_fn)) + 1); + } #endif return srclen; }