diff options
Diffstat (limited to 'Utility/DirWatcher.hs')
-rw-r--r-- | Utility/DirWatcher.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Utility/DirWatcher.hs b/Utility/DirWatcher.hs index d038f59ac..d28381fae 100644 --- a/Utility/DirWatcher.hs +++ b/Utility/DirWatcher.hs @@ -47,10 +47,10 @@ canWatch = False - OTOH, with kqueue, often only one event is received, indicating the most - recent state of the file. -} eventsCoalesce :: Bool -#if (WITH_INOTIFY || WITH_FSEVENTS) +#if WITH_INOTIFY eventsCoalesce = False #else -#if WITH_KQUEUE +#if (WITH_KQUEUE || WITH_FSEVENTS) eventsCoalesce = True #else eventsCoalesce = undefined |