From: sof Date: Sun, 18 May 1997 04:59:19 +0000 (+0000) Subject: [project @ 1997-05-18 04:59:19 by sof] X-Git-Tag: Approximately_1000_patches_recorded~643 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=7a589de33e5c1496463f58b640bc20385ac0dc10 [project @ 1997-05-18 04:59:19 by sof] Updated for new PP --- diff --git a/ghc/compiler/utils/Bag.lhs b/ghc/compiler/utils/Bag.lhs index a22ccde..430af93 100644 --- a/ghc/compiler/utils/Bag.lhs +++ b/ghc/compiler/utils/Bag.lhs @@ -25,7 +25,7 @@ module Bag ( IMP_Ubiq(){-uitous-} IMPORT_1_3(List(partition)) -import Outputable ( interpp'SP ) +import Outputable --( interpp'SP ) import Pretty #else import List(partition) @@ -161,11 +161,11 @@ bagToList b = foldrBag (:) [] b #ifdef COMPILING_GHC instance (Outputable a) => Outputable (Bag a) where - ppr sty EmptyBag = ppPStr SLIT("emptyBag") + ppr sty EmptyBag = ptext SLIT("emptyBag") ppr sty (UnitBag a) = ppr sty a - ppr sty (TwoBags b1 b2) = ppCat [ppr sty b1, pp'SP, ppr sty b2] + ppr sty (TwoBags b1 b2) = hsep [ppr sty b1 <> comma, ppr sty b2] ppr sty (ListBag as) = interpp'SP sty as - ppr sty (ListOfBags bs) = ppCat [ppLbrack, interpp'SP sty bs, ppRbrack] + ppr sty (ListOfBags bs) = brackets (interpp'SP sty bs) #endif {- COMPILING_GHC -} \end{code}