summaryrefslogtreecommitdiff
path: root/compiler/utils
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2012-02-26 17:37:38 +0000
committerIan Lynagh <igloo@earth.li>2012-02-26 17:37:38 +0000
commitee435a27c9884962b6a39a7f222a6e051a62afce (patch)
tree2eccd6e603728323fbbbd6df3c89f5ee1139ab58 /compiler/utils
parentbb6657df9685b71f2ca2246539b6e4db26191b10 (diff)
downloadhaskell-ee435a27c9884962b6a39a7f222a6e051a62afce.tar.gz
Change -X flags into LANGUAGE pragmas
Diffstat (limited to 'compiler/utils')
-rw-r--r--compiler/utils/UniqFM.lhs4
1 files changed, 3 insertions, 1 deletions
diff --git a/compiler/utils/UniqFM.lhs b/compiler/utils/UniqFM.lhs
index 4ee6e190cc..259689c454 100644
--- a/compiler/utils/UniqFM.lhs
+++ b/compiler/utils/UniqFM.lhs
@@ -20,7 +20,9 @@ and ``addToUFM\_C'' and ``Data.IntMap.insertWith'' differ in the order
of arguments of combining function.
\begin{code}
-{-# OPTIONS -fno-warn-tabs -XGeneralizedNewtypeDeriving #-}
+{-# LANGUAGE GeneralizedNewtypeDeriving #-}
+
+{-# OPTIONS -fno-warn-tabs #-}
-- The above warning supression flag is a temporary kludge.
-- While working on this module you are encouraged to remove it and
-- detab the module (please do the detabbing in a separate patch). See