[project @ 1997-07-25 22:43:29 by sof]
[ghc-hetmet.git] / ghc / compiler / typecheck / TcDefaults.lhs
index bb0557d..0b9a66b 100644 (file)
@@ -24,8 +24,9 @@ import TcMonoType     ( tcHsType )
 import TcSimplify      ( tcSimplifyCheckThetas )
 
 import TysWiredIn      ( intTy, doubleTy, unitTy )
+import Type             ( SYN_IE(Type) )
 import Unique          ( numClassKey )
-import Pretty          ( ppStr, ppAboves )
+import Pretty          ( ptext, vcat )
 import ErrUtils                ( addShortErrLocLine )
 import Util
 \end{code}
@@ -63,14 +64,14 @@ tc_defaults decls
 
 
 dupDefaultDeclErr (DefaultDecl _ locn1 : dup_things) sty
-  = ppAboves (item1 : map dup_item dup_things)
+  = vcat (item1 : map dup_item dup_things)
   where
     item1
       = addShortErrLocLine locn1 (\ sty ->
-       ppStr "multiple default declarations") sty
+       ptext SLIT("multiple default declarations")) sty
 
     dup_item (DefaultDecl _ locn)
       = addShortErrLocLine locn (\ sty ->
-       ppStr "here was another default declaration") sty
+       ptext SLIT("here was another default declaration")) sty
 
 \end{code}