diff options
| author | Eli Zaretskii | 2012-12-29 16:32:36 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2012-12-29 16:32:36 +0200 |
| commit | ccad023bc3c70fc8368c00f7ed2f5ec947a4260d (patch) | |
| tree | c6471cecd468c61a1a81860215f731e265721a88 /src/ChangeLog | |
| parent | ccb1c17e8bf1aa0d21bddd9fa37154a120657f52 (diff) | |
| download | emacs-ccad023bc3c70fc8368c00f7ed2f5ec947a4260d.tar.gz emacs-ccad023bc3c70fc8368c00f7ed2f5ec947a4260d.zip | |
Fix bug #13298 with failed backups by falling back on set-file-modes.
src/fileio.c (Fset_file_selinux_context, Fset_file_acl): Return t if
file's SELinux context or ACLs successfully set, nil otherwise.
lisp/files.el (backup-buffer-copy, basic-save-buffer-2): If
set-file-extended-attributes fails, fall back on set-file-modes
instead of signaling an error.
doc/lispref/files.texi (Changing Files): Document the return values of
set-file-selinux-context and set-file-acl.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 76f6865972c..f40f936d13a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2012-12-29 Eli Zaretskii <eliz@gnu.org> | 1 | 2012-12-29 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * fileio.c (Fset_file_selinux_context, Fset_file_acl): Return t if | ||
| 4 | file's SELinux context or ACLs successfully set, nil otherwise. | ||
| 5 | (Bug#13298) | ||
| 6 | |||
| 3 | * w32proc.c (reader_thread): Avoid passing NULL handles to | 7 | * w32proc.c (reader_thread): Avoid passing NULL handles to |
| 4 | SetEvent and WaitForSingleObject. | 8 | SetEvent and WaitForSingleObject. |
| 5 | 9 | ||