summaryrefslogtreecommitdiff
path: root/ghc
diff options
context:
space:
mode:
authorSimon Marlow <simonmar@microsoft.com>2006-03-29 12:02:39 +0000
committerSimon Marlow <simonmar@microsoft.com>2006-03-29 12:02:39 +0000
commitacd07df5e2960d02d91717eedbeb681224024216 (patch)
tree952442aea84764c5d9c2903ec323dc9dc370f6a9 /ghc
parent274a7b1ab7cf30fd1ceaddd02f991eaf694cc37c (diff)
downloadhaskell-acd07df5e2960d02d91717eedbeb681224024216.tar.gz
fix for GHC >= 6.5 again
Diffstat (limited to 'ghc')
-rw-r--r--ghc/lib/compat/Compat/Unicode.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/lib/compat/Compat/Unicode.hs b/ghc/lib/compat/Compat/Unicode.hs
index 3c8bfc6a06..2637fac818 100644
--- a/ghc/lib/compat/Compat/Unicode.hs
+++ b/ghc/lib/compat/Compat/Unicode.hs
@@ -5,7 +5,7 @@ module Compat.Unicode (
#if __GLASGOW_HASKELL__ > 604
-import Data.Char (GeneralCategory(..), generalCategory)
+import Data.Char (GeneralCategory(..), generalCategory,isPrint,isUpper)
#else