diff options
author | David Roundy <droundy@darcs.net> | 2007-10-12 03:14:50 +0200 |
---|---|---|
committer | David Roundy <droundy@darcs.net> | 2007-10-12 03:14:50 +0200 |
commit | 89999a17244708953e0fcfe8a64161ef1d064f19 (patch) | |
tree | 3ca7c254b4fd8a5a8f36178b1c9392bdefab00bf | |
parent | a51de85e2f7879b88173fb12d404b6cbc85e3b2c (diff) | |
download | metatile-89999a17244708953e0fcfe8a64161ef1d064f19.tar metatile-89999a17244708953e0fcfe8a64161ef1d064f19.zip |
use the right catch in catchX.
Don't ask *me* why the prelude includes a version of
catch that is worse than useless (because it lulls you
into a feeling of safety).
darcs-hash:20071012011450-72aca-cb4b72d604150423d7d261d462d5a5a948243d24
-rw-r--r-- | XMonad.hs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -24,6 +24,8 @@ module XMonad ( import StackSet +import Prelude hiding ( catch ) +import Control.Exception ( catch ) import Control.Monad.State import Control.Monad.Reader import System.IO |