diff options
author | Simon Marlow <simonmar@microsoft.com> | 2006-03-29 12:02:39 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2006-03-29 12:02:39 +0000 |
commit | acd07df5e2960d02d91717eedbeb681224024216 (patch) | |
tree | 952442aea84764c5d9c2903ec323dc9dc370f6a9 /ghc | |
parent | 274a7b1ab7cf30fd1ceaddd02f991eaf694cc37c (diff) | |
download | haskell-acd07df5e2960d02d91717eedbeb681224024216.tar.gz |
fix for GHC >= 6.5 again
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/lib/compat/Compat/Unicode.hs | 2 |
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 |