From 14c80817aace39608bada6c8d87cf29435d579dd Mon Sep 17 00:00:00 2001 From: "simonpj@microsoft.com" Date: Thu, 11 Nov 2010 13:45:03 +0000 Subject: [PATCH] Fix multi-line string (minor glitch in stage-1 compiler) --- compiler/utils/Outputable.lhs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/utils/Outputable.lhs b/compiler/utils/Outputable.lhs index d6f950a..e178e99 100644 --- a/compiler/utils/Outputable.lhs +++ b/compiler/utils/Outputable.lhs @@ -83,11 +83,11 @@ import System.FilePath #if __GLASGOW_HASKELL__ >= 701 -import GHC.Show ( showMultiLineString ) +import GHC.Show ( showMultiLineString ) #else showMultiLineString :: String -> [String] -- Crude version -showMultiLineString s = [s] +showMultiLineString s = [ showList s "" ] #endif \end{code} -- 1.7.10.4