aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Core.hs
diff options
context:
space:
mode:
authorAdam Vogt <vogt.adam@gmail.com>2011-06-09 01:04:15 +0200
committerAdam Vogt <vogt.adam@gmail.com>2011-06-09 01:04:15 +0200
commitd4244e0ff967a61e5babb313aefe19259772e768 (patch)
treef2de10a9ee8f56d364328311a941cfecc385223d /XMonad/Core.hs
parent9f97c1e27b2e2338cfb6d46689011b163854af2d (diff)
downloadxmonad-d4244e0ff967a61e5babb313aefe19259772e768.tar.gz
xmonad-d4244e0ff967a61e5babb313aefe19259772e768.tar.xz
xmonad-d4244e0ff967a61e5babb313aefe19259772e768.zip
Remove -fglasgow-exts for deriving Data/Typeable needed with ghc-6.6
Ignore-this: 8f9e33a86a9919406792383c49ac4555 This gets rid of a warning with ghc-7.0.2, and -XDeriveDataTypeable seems to have been added with 6.8, which should be far back enough: http://www.haskell.org/ghc/docs/6.8-latest/html/users_guide/deriving.html#deriving-typeable darcs-hash:20110608230415-1499c-2929ccda56381f501e548f5a00e7d8f03e80c016.gz
Diffstat (limited to '')
-rw-r--r--XMonad/Core.hs4
1 files changed, 1 insertions, 3 deletions
diff --git a/XMonad/Core.hs b/XMonad/Core.hs
index 765985f..ba12455 100644
--- a/XMonad/Core.hs
+++ b/XMonad/Core.hs
@@ -1,7 +1,5 @@
{-# LANGUAGE ExistentialQuantification, FlexibleInstances, GeneralizedNewtypeDeriving,
- MultiParamTypeClasses, TypeSynonymInstances, CPP #-}
--- required for deriving Typeable
-{-# OPTIONS_GHC -fglasgow-exts #-}
+ MultiParamTypeClasses, TypeSynonymInstances, CPP, DeriveDataTypeable #-}
-----------------------------------------------------------------------------
-- |