aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Hooks/DebugEvents.hs
diff options
context:
space:
mode:
Diffstat (limited to 'XMonad/Hooks/DebugEvents.hs')
-rw-r--r--XMonad/Hooks/DebugEvents.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/XMonad/Hooks/DebugEvents.hs b/XMonad/Hooks/DebugEvents.hs
index a038b6c..753dc1f 100644
--- a/XMonad/Hooks/DebugEvents.hs
+++ b/XMonad/Hooks/DebugEvents.hs
@@ -47,6 +47,7 @@ import Numeric (showHex)
import System.Exit
import System.IO
import System.Process
+import Control.Applicative
-- | Event hook to dump all received events. You should probably not use this
-- unconditionally; it will produce massive amounts of output.
@@ -270,6 +271,7 @@ data DecodeState = DecS {value :: Raw -- unconsumed raw property value
newtype Decoder a = Decoder (ReaderT Decode (StateT DecodeState X) a)
#ifndef __HADDOCK__
deriving (Functor
+ ,Applicative
,Monad
,MonadIO
,MonadState DecodeState