From bdd74e54712349f9c7605cb1e763514a8b99f66f Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Tue, 2 Nov 2010 19:24:46 +0000 Subject: [PATCH] Fix a #if test showMultiLineString is only in >= 7.1. --- compiler/utils/Outputable.lhs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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] -- 1.7.10.4