Fix a #if test
authorIan Lynagh <igloo@earth.li>
Tue, 2 Nov 2010 19:24:46 +0000 (19:24 +0000)
committerIan Lynagh <igloo@earth.li>
Tue, 2 Nov 2010 19:24:46 +0000 (19:24 +0000)
showMultiLineString is only in >= 7.1.

compiler/utils/Outputable.lhs

index 96cf492..d6f950a 100644 (file)
@@ -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]