diff options
author | Adam Vogt <vogt.adam@gmail.com> | 2012-11-09 02:35:06 +0100 |
---|---|---|
committer | Adam Vogt <vogt.adam@gmail.com> | 2012-11-09 02:35:06 +0100 |
commit | 7f324e08476792e522987867c0f8098eeb0e50e0 (patch) | |
tree | b4deece8dd5395cc8ab39f73f6f36be50c07842f /XMonad/Actions | |
parent | 8210d1d6f72daa3a95dac7be71f3d3358dfe1191 (diff) | |
download | XMonadContrib-7f324e08476792e522987867c0f8098eeb0e50e0.tar.gz XMonadContrib-7f324e08476792e522987867c0f8098eeb0e50e0.tar.xz XMonadContrib-7f324e08476792e522987867c0f8098eeb0e50e0.zip |
Use Control.Exception.catch explitly to avoid warnings
Ignore-this: 2cebdfe604c581f2b4a644e9aed726c7
The base that comes with ghc-7.6.1 no longer includes Prelude.catch;
so these modules were changed so that there is no warning for
import Prelude hiding (catch)
At the same time these changes should be compatible with older GHCs,
since the catch being has never been the one in the Prelude.
darcs-hash:20121109013506-1499c-c593662b0780eb49287efcbfe0e9796f7dd57c73.gz
Diffstat (limited to 'XMonad/Actions')
-rw-r--r-- | XMonad/Actions/TagWindows.hs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/XMonad/Actions/TagWindows.hs b/XMonad/Actions/TagWindows.hs index 10331fe..86c2e9e 100644 --- a/XMonad/Actions/TagWindows.hs +++ b/XMonad/Actions/TagWindows.hs @@ -26,10 +26,9 @@ module XMonad.Actions.TagWindows ( TagPrompt, ) where -import Prelude hiding (catch) import Data.List (nub,sortBy) import Control.Monad -import Control.Exception +import Control.Exception as E import XMonad.StackSet hiding (filter) @@ -82,7 +81,7 @@ setTag s w = withDisplay $ \d -> -- reads from the \"_XMONAD_TAGS\" window property getTags :: Window -> X [String] getTags w = withDisplay $ \d -> - io $ catch (internAtom d "_XMONAD_TAGS" False >>= + io $ E.catch (internAtom d "_XMONAD_TAGS" False >>= getTextProperty d w >>= wcTextPropertyToTextList d) (econst [[]]) |