summaryrefslogtreecommitdiff
path: root/libraries/base/GHC/Unicode.hs
diff options
context:
space:
mode:
authorsimonmar <unknown>2005-01-28 13:36:34 +0000
committersimonmar <unknown>2005-01-28 13:36:34 +0000
commit2940ff3f0ca9aa4a4522ee61fea054052921c397 (patch)
treeee318335bbdc5d44e3dd51918d93c0c6a8de1edf /libraries/base/GHC/Unicode.hs
parent3a682aa855ace3304e7ce1c7bd965316053ebb25 (diff)
downloadhaskell-2940ff3f0ca9aa4a4522ee61fea054052921c397.tar.gz
[project @ 2005-01-28 13:36:25 by simonmar]
Catch up with updates to platform #defines. Generally: use _HOST_ rather than _TARGET_ (except in Cabal where we have to retain compatibility with previous GHC versions).
Diffstat (limited to 'libraries/base/GHC/Unicode.hs')
-rw-r--r--libraries/base/GHC/Unicode.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/GHC/Unicode.hs b/libraries/base/GHC/Unicode.hs
index e190cc16e1..e3ce2bdbcf 100644
--- a/libraries/base/GHC/Unicode.hs
+++ b/libraries/base/GHC/Unicode.hs
@@ -122,7 +122,7 @@ toLower :: Char -> Char
-- -----------------------------------------------------------------------------
-- Win32 implementation
-#if (defined(HAVE_WCTYPE_H) && HAVE_ISWSPACE && defined(HTYPE_WINT_T)) || mingw32_TARGET_OS
+#if (defined(HAVE_WCTYPE_H) && HAVE_ISWSPACE && defined(HTYPE_WINT_T)) || mingw32_HOST_OS
-- Use the wide-char classification functions if available. Glibc
-- seems to implement these properly, even for chars > 0xffff, as long