diff options
| author | Eli Zaretskii | 2012-10-05 11:17:17 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2012-10-05 11:17:17 +0200 |
| commit | 0d9f584b2c2a816670a22948615d7e0a5b93fc10 (patch) | |
| tree | f980325890f384eb4741d047e9796c8f04fc355d /src/ChangeLog | |
| parent | 379acb951495d947ff42da6fc79b39f2e5f2f623 (diff) | |
| download | emacs-0d9f584b2c2a816670a22948615d7e0a5b93fc10.tar.gz emacs-0d9f584b2c2a816670a22948615d7e0a5b93fc10.zip | |
Support setting file times of directories on MS-Windows.
src/w32.c (utime): Open the file with FILE_FLAG_BACKUP_SEMANTICS, so
that time stamps of directories could also be changed. Don't
request the too broad GENERIC_WRITE, only the more restrictive
FILE_WRITE_ATTRIBUTES access rights.
src/fileio.c (Fset_file_times): Special-case ignoring errors for
directories only on MSDOS, not on MS-Windows.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 396240bb7b8..b2502010619 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,13 @@ | |||
| 1 | 2012-10-05 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * w32.c (utime): Open the file with FILE_FLAG_BACKUP_SEMANTICS, so | ||
| 4 | that time stamps of directories could also be changed. Don't | ||
| 5 | request the too broad GENERIC_WRITE, only the more restrictive | ||
| 6 | FILE_WRITE_ATTRIBUTES access rights. | ||
| 7 | |||
| 8 | * fileio.c (Fset_file_times): Special-case ignoring errors for | ||
| 9 | directories only on MSDOS, not on MS-Windows. | ||
| 10 | |||
| 1 | 2012-10-05 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change) | 11 | 2012-10-05 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change) |
| 2 | 12 | ||
| 3 | * minibuf.c (Fcompleting_read): Doc fix. (Bug#12555) | 13 | * minibuf.c (Fcompleting_read): Doc fix. (Bug#12555) |