From 6044ba62c57f251aa8461deb0558116c045f7e48 Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 27 Aug 2003 08:41:07 +0000 Subject: [PATCH] [project @ 2003-08-27 08:41:07 by simonmar] Remove duplicate type signature --- GHC/Unicode.hsc | 1 - 1 file changed, 1 deletion(-) 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 -- 1.7.10.4