[Haskell] ASCII higher than 127

2006-10-17 Thread Andreas Marth
How was that with Haskell and Unicode??? While up to ghc-6.4.2 the following function worked it now doesn't compile: isSpezGermanChar :: Char - Bool isSpezGermanChar 'ä' = True isSpezGermanChar 'ö' = True isSpezGermanChar 'ü' = True isSpezGermanChar 'Ä' = True isSpezGermanChar 'Ö' = True

Re: [Haskell] ASCII higher than 127

2006-10-17 Thread Jon Fairbairn
On 2006-10-17 at 16:31+0200 Andreas Marth wrote: How was that with Haskell and Unicode??? I think this probably belongs on ghc-users rather than Haskell. Anyhow, there aren't any ASCII characters higher than 127. While up to ghc-6.4.2 the following function worked it now doesn't compile: