From 7a589de33e5c1496463f58b640bc20385ac0dc10 Mon Sep 17 00:00:00 2001 From: sof Date: Sun, 18 May 1997 04:59:19 +0000 Subject: [PATCH] [project @ 1997-05-18 04:59:19 by sof] Updated for new PP --- ghc/compiler/utils/Bag.lhs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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} -- 1.7.10.4