From: simonmar Date: Wed, 27 Aug 2003 08:41:07 +0000 (+0000) Subject: [project @ 2003-08-27 08:41:07 by simonmar] X-Git-Tag: nhc98-1-18-release~526 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=6044ba62c57f251aa8461deb0558116c045f7e48;p=ghc-base.git [project @ 2003-08-27 08:41:07 by simonmar] Remove duplicate type signature --- diff --git a/GHC/Unicode.hsc b/GHC/Unicode.hsc index d58722a..fc41060 100644 --- a/GHC/Unicode.hsc +++ b/GHC/Unicode.hsc @@ -194,7 +194,6 @@ isAlphaNum c = isAlpha c || isDigit c -- Case-changing operations -toUpper, toLower :: Char -> Char toUpper c@(C## c##) | isAsciiLower c = C## (chr## (ord## c## -## 32##)) | isAscii c = c