aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2012-12-12 18:17:49 -0800
committerPaul Eggert2012-12-12 18:17:49 -0800
commitd20704efe62cf45255252168b4f4c453a8c88430 (patch)
treeadb9aa2b1576e0433a6162909f7c5b8569e10cce /src/ChangeLog
parenteb8006c61fee921dedba1cf708b390e12b89836d (diff)
downloademacs-d20704efe62cf45255252168b4f4c453a8c88430.tar.gz
emacs-d20704efe62cf45255252168b4f4c453a8c88430.zip
* fileio.c (Fcopy_file): Make fstat failure as serious as open failure.
fstat shouldn't fail, and if it does fail copy-file should not proceed. Remove unnecessary S_ISLNK test, as (contra the comments) this function can't copy symlinks. Improve quality of error message when attempting to copy files that are neither regular files nor directories.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 3070fcb6e9d..53c0d93f512 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,12 @@
12012-12-13 Paul Eggert <eggert@cs.ucla.edu>
2
3 * fileio.c (Fcopy_file): Make fstat failure as serious as open failure.
4 fstat shouldn't fail, and if it does fail copy-file should not proceed.
5 Remove unnecessary S_ISLNK test, as (contra the comments) this
6 function can't copy symlinks. Improve quality of error message
7 when attempting to copy files that are neither regular files nor
8 directories.
9
12012-12-12 Dmitry Antipov <dmantipov@yandex.ru> 102012-12-12 Dmitry Antipov <dmantipov@yandex.ru>
2 11
3 * dispnew.c (set_window_cursor_after_update): Use clip_to_bounds. 12 * dispnew.c (set_window_cursor_after_update): Use clip_to_bounds.