Make the showSDoc definition more explicit
authorIan Lynagh <igloo@earth.li>
Tue, 31 Mar 2009 17:41:03 +0000 (17:41 +0000)
committerIan Lynagh <igloo@earth.li>
Tue, 31 Mar 2009 17:41:03 +0000 (17:41 +0000)
compiler/utils/Outputable.lhs

index fb0270f..8c9c7c7 100644 (file)
@@ -316,7 +316,7 @@ mkCodeStyle = PprCode
 -- However, Doc *is* an instance of Show
 -- showSDoc just blasts it out as a string
 showSDoc :: SDoc -> String
-showSDoc d = show (d defaultUserStyle)
+showSDoc d = Pretty.showDocWith PageMode (d defaultUserStyle)
 
 showSDocForUser :: PrintUnqualified -> SDoc -> String
 showSDocForUser unqual doc = show (doc (mkUserStyle unqual AllTheWay))