diff options
| author | Michael Albinus | 2015-09-21 15:07:06 +0200 |
|---|---|---|
| committer | Michael Albinus | 2015-09-21 15:07:06 +0200 |
| commit | 01b547529ba81f4f5a64f5017a2c3d6601d0bb95 (patch) | |
| tree | c52e7ad2b66dca3d7a8f612516d0e738696713bf /doc | |
| parent | 127bafdc6dcbcf4b11bff7ec52960bd941613a1c (diff) | |
| download | emacs-01b547529ba81f4f5a64f5017a2c3d6601d0bb95.tar.gz emacs-01b547529ba81f4f5a64f5017a2c3d6601d0bb95.zip | |
Adapt tests and manual for w32notify
* doc/lispref/os.texi (File Notifications): w32notify does not
send `attribute-changed' events.
* test/automated/file-notify-tests.el (file-notify--test-with-events):
Simplify parameters. Adapt all callees.
(file-notify-test02-events): w32notify does not send
`attribute-changed' events.
(file-notify-test04-file-validity, file-notify-test05-dir-validity):
Do not skip in case of w32notify. Simply ignore this part of the test.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/os.texi | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/lispref/os.texi b/doc/lispref/os.texi index f5eecb2d569..1d0723e00ef 100644 --- a/doc/lispref/os.texi +++ b/doc/lispref/os.texi | |||
| @@ -2565,7 +2565,7 @@ specification prior to @samp{"1.0"}. | |||
| 2565 | 2565 | ||
| 2566 | Several operating systems support watching of filesystems for changes | 2566 | Several operating systems support watching of filesystems for changes |
| 2567 | of files. If configured properly, Emacs links a respective library | 2567 | of files. If configured properly, Emacs links a respective library |
| 2568 | like @file{gfilenotify}, @file{inotify}, or @file{w32notify} | 2568 | like @file{gfilenotify}, @file{inotify}, or @file{w32notify} |
| 2569 | statically. These libraries enable watching of filesystems on the | 2569 | statically. These libraries enable watching of filesystems on the |
| 2570 | local machine. | 2570 | local machine. |
| 2571 | 2571 | ||
| @@ -2632,6 +2632,11 @@ any one of the following symbols: | |||
| 2632 | a @var{file} attribute was changed | 2632 | a @var{file} attribute was changed |
| 2633 | @end table | 2633 | @end table |
| 2634 | 2634 | ||
| 2635 | Note that the @file{w32notify} library does not report | ||
| 2636 | @code{attribute-changed} events. Even in case a file attribute has | ||
| 2637 | changed, like permissions or modification time, this library reports a | ||
| 2638 | @code{changed} event. | ||
| 2639 | |||
| 2635 | @var{file} and @var{file1} are the name of the file(s) whose event is | 2640 | @var{file} and @var{file1} are the name of the file(s) whose event is |
| 2636 | being reported. For example: | 2641 | being reported. For example: |
| 2637 | 2642 | ||