assistant: Fix OSX bug that prevented committing changed files to a repository when in indirect mode.

This commit is contained in:
Joey Hess 2013-03-17 17:01:43 -04:00
parent 1760a2e98c
commit 35a0ae334c
4 changed files with 11 additions and 3 deletions

View file

@ -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