diff options
| author | Michael Albinus | 2017-05-01 12:16:15 +0200 |
|---|---|---|
| committer | Michael Albinus | 2017-05-01 12:16:15 +0200 |
| commit | ebff4177e2a0226aa1e65181307acfdadfbded3b (patch) | |
| tree | b25e862a92f9f9ce01e4907239ecc2aa4d7440da /lisp | |
| parent | 04f915db9732d275ad1de8add8009c2af9d94d1f (diff) | |
| download | emacs-ebff4177e2a0226aa1e65181307acfdadfbded3b.tar.gz emacs-ebff4177e2a0226aa1e65181307acfdadfbded3b.zip | |
Fix filenotify-tests.el for cygwin
* test/lisp/filenotify-tests.el (file-notify--test-read-event):
Add an additional `sit-for'.
(file-notify-test02-rm-watch): Add an additional
`file-notify--test-read-event' call.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/filenotify.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/filenotify.el b/lisp/filenotify.el index 0a45db82192..64cfab143ec 100644 --- a/lisp/filenotify.el +++ b/lisp/filenotify.el | |||
| @@ -188,8 +188,8 @@ EVENT is the cadr of the event in `file-notify-handle-event' | |||
| 188 | ((memq action '(attrib link)) 'attribute-changed) | 188 | ((memq action '(attrib link)) 'attribute-changed) |
| 189 | ((memq action '(create added)) 'created) | 189 | ((memq action '(create added)) 'created) |
| 190 | ((memq action '(modify modified write)) 'changed) | 190 | ((memq action '(modify modified write)) 'changed) |
| 191 | ((memq action | 191 | ((memq action '(delete delete-self move-self removed)) |
| 192 | '(delete delete-self move-self removed)) 'deleted) | 192 | 'deleted) |
| 193 | ;; Make the event pending. | 193 | ;; Make the event pending. |
| 194 | ((memq action '(moved-from renamed-from)) | 194 | ((memq action '(moved-from renamed-from)) |
| 195 | (setq file-notify--pending-event | 195 | (setq file-notify--pending-event |