Merge pull request #124 from trofi/master

XMonad/Layout/Groups/Helpers.hs: drop broken ImpredicativeTypes extension (fixes #123)
This commit is contained in:
Brent Yorgey
2016-11-28 17:54:29 -05:00
committed by GitHub

View File

@@ -1,5 +1,5 @@
{-# OPTIONS_GHC -fno-warn-missing-signatures #-} {-# OPTIONS_GHC -fno-warn-missing-signatures #-}
{-# LANGUAGE MultiParamTypeClasses, Rank2Types, ImpredicativeTypes #-} {-# LANGUAGE MultiParamTypeClasses, Rank2Types #-}
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
-- | -- |
@@ -178,7 +178,7 @@ focusFloatDown = focusHelper id id
-- ** Groups-specific actions -- ** Groups-specific actions
wrap :: G.ModifySpec -> X () wrap :: G.ModifySpec -> X ()
wrap = sendMessage . G.Modify wrap x = sendMessage (G.Modify x)
-- | Swap the focused group with the previous one -- | Swap the focused group with the previous one
swapGroupUp :: X () swapGroupUp :: X ()