diff options
Diffstat (limited to 'XMonad')
-rw-r--r-- | XMonad/Core.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/XMonad/Core.hs b/XMonad/Core.hs index 112d1e4..20d7258 100644 --- a/XMonad/Core.hs +++ b/XMonad/Core.hs @@ -192,7 +192,7 @@ userCode a = catchX (Just `liftM` a) (return Nothing) -- | Same as userCode but with a default argument to return instead of using -- Maybe, provided for convenience. userCodeDef :: a -> X a -> X a -userCodeDef def a = fromMaybe def `liftM` userCode a +userCodeDef defValue a = fromMaybe defValue `liftM` userCode a -- --------------------------------------------------------------------- -- Convenient wrappers to state |