aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorEli Zaretskii2013-12-14 10:29:42 +0200
committerEli Zaretskii2013-12-14 10:29:42 +0200
commitec4440cf5ee9b885957a774354894b62713258c5 (patch)
treeab8a997a398cc37c4f0d3270679c7d6a1e0a8d61 /src/ChangeLog
parent276bc3337b27bcd76aa2735ed96c160c6a1b573a (diff)
downloademacs-ec4440cf5ee9b885957a774354894b62713258c5.tar.gz
emacs-ec4440cf5ee9b885957a774354894b62713258c5.zip
Fix copy-file on MS-Windows with file names outside of current locale.
src/fileio.c (Fcopy_file) [WINDOWSNT]: Move most of the Windows-specific code to w32.c. Change error message text to match that of Posix platforms. src/w32.c (w32_copy_file): New function, most of the code copied and reworked from Fcopy_file. Improve error handling. Plug memory leak when errors are thrown. Support file names outside of the current codepage. (Bug#7100)
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 4bd5191d5c6..df145600556 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,14 @@
12013-12-14 Eli Zaretskii <eliz@gnu.org>
2
3 * fileio.c (Fcopy_file) [WINDOWSNT]: Move most of the
4 Windows-specific code to w32.c. Change error message text to
5 match that of Posix platforms.
6
7 * w32.c (w32_copy_file): New function, most of the code copied and
8 reworked from Fcopy_file. Improve error handling. Plug memory
9 leak when errors are thrown. Support file names outside of the
10 current codepage. (Bug#7100)
11
12013-12-13 Paul Eggert <eggert@cs.ucla.edu> 122013-12-13 Paul Eggert <eggert@cs.ucla.edu>
2 13
3 * lread.c (load_path_default): Prototype. 14 * lread.c (load_path_default): Prototype.