aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMichael Albinus2015-09-21 15:07:06 +0200
committerMichael Albinus2015-09-21 15:07:06 +0200
commit01b547529ba81f4f5a64f5017a2c3d6601d0bb95 (patch)
treec52e7ad2b66dca3d7a8f612516d0e738696713bf /doc
parent127bafdc6dcbcf4b11bff7ec52960bd941613a1c (diff)
downloademacs-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.texi7
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
2566Several operating systems support watching of filesystems for changes 2566Several operating systems support watching of filesystems for changes
2567of files. If configured properly, Emacs links a respective library 2567of files. If configured properly, Emacs links a respective library
2568like @file{gfilenotify}, @file{inotify}, or @file{w32notify} 2568like @file{gfilenotify}, @file{inotify}, or @file{w32notify}
2569statically. These libraries enable watching of filesystems on the 2569statically. These libraries enable watching of filesystems on the
2570local machine. 2570local machine.
2571 2571
@@ -2632,6 +2632,11 @@ any one of the following symbols:
2632a @var{file} attribute was changed 2632a @var{file} attribute was changed
2633@end table 2633@end table
2634 2634
2635Note that the @file{w32notify} library does not report
2636@code{attribute-changed} events. Even in case a file attribute has
2637changed, 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
2636being reported. For example: 2641being reported. For example:
2637 2642