mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-08-01 12:41:52 -07:00
Control.Exception.Extensible -> Control.Exception
According to its documentation[1], this module simply re-exports Control.Exception on recent GHC versions. As we only support recent versions, this import is unnecessary. [1] http://hackage.haskell.org/package/extensible-exceptions-0.1.1.4/docs/Control-Exception-Extensible.html
This commit is contained in:
@@ -22,7 +22,7 @@ module XMonad.Util.XSelection ( -- * Usage
|
||||
transformPromptSelection,
|
||||
transformSafePromptSelection) where
|
||||
|
||||
import Control.Exception.Extensible as E (catch,SomeException(..))
|
||||
import Control.Exception as E (catch,SomeException(..))
|
||||
import Data.Maybe (fromMaybe)
|
||||
import XMonad
|
||||
import XMonad.Util.Run (safeSpawn, unsafeSpawn)
|
||||
|
Reference in New Issue
Block a user