diff options
author | jao <jao@gnu.org> | 2016-07-28 00:30:21 +0200 |
---|---|---|
committer | jao <jao@gnu.org> | 2016-07-28 00:30:21 +0200 |
commit | 5e783dc34abb507f4d9715f0fd30ed8db016772a (patch) | |
tree | 8ffade9020f5cf770ff7bdb104f645465a2f55a8 /src/Plugins/PipeReader.hs | |
parent | 6af854ffa7ca840857876629690a10e143396e1f (diff) | |
download | xmobar-5e783dc34abb507f4d9715f0fd30ed8db016772a.tar.gz xmobar-5e783dc34abb507f4d9715f0fd30ed8db016772a.tar.bz2 |
Fixing compatibility with GHC 7.6
Diffstat (limited to 'src/Plugins/PipeReader.hs')
-rw-r--r-- | src/Plugins/PipeReader.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Plugins/PipeReader.hs b/src/Plugins/PipeReader.hs index 653a72d..b3e178d 100644 --- a/src/Plugins/PipeReader.hs +++ b/src/Plugins/PipeReader.hs @@ -21,6 +21,7 @@ import System.Posix.Files import Control.Concurrent(threadDelay) import Control.Exception import Control.Monad(forever, unless) +import Control.Applicative ((<$>)) data PipeReader = PipeReader String String deriving (Read, Show) |