projects
/
ghc-hetmet.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
47d3704
)
Fix a #if test
author
Ian Lynagh
<igloo@earth.li>
Tue, 2 Nov 2010 19:24:46 +0000
(19:24 +0000)
committer
Ian 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
patch
|
blob
|
history
diff --git
a/compiler/utils/Outputable.lhs
b/compiler/utils/Outputable.lhs
index
96cf492
..
d6f950a
100644
(file)
--- 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]