From: Ian Lynagh Date: Tue, 2 Nov 2010 19:24:46 +0000 (+0000) Subject: Fix a #if test X-Git-Tag: 2010-11-18~45 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=bdd74e54712349f9c7605cb1e763514a8b99f66f Fix a #if test showMultiLineString is only in >= 7.1. --- diff --git a/compiler/utils/Outputable.lhs b/compiler/utils/Outputable.lhs index 96cf492..d6f950a 100644 --- a/compiler/utils/Outputable.lhs +++ b/compiler/utils/Outputable.lhs @@ -82,7 +82,7 @@ import System.IO ( Handle, stderr, stdout, hFlush ) import System.FilePath -#if __GLASGOW_HASKELL__ >= 700 +#if __GLASGOW_HASKELL__ >= 701 import GHC.Show ( showMultiLineString ) #else showMultiLineString :: String -> [String]