[project @ 1998-02-23 16:49:38 by simonm]
authorsimonm <unknown>
Mon, 23 Feb 1998 16:49:38 +0000 (16:49 +0000)
committersimonm <unknown>
Mon, 23 Feb 1998 16:49:38 +0000 (16:49 +0000)
add missing 'True' case to instance Outputable Bool.

ghc/compiler/utils/Outputable.lhs

index e09d59d..c34404b 100644 (file)
@@ -246,6 +246,7 @@ class Outputable a where
 
 \begin{code}
 instance Outputable Bool where
+    ppr True  = ptext SLIT("True")
     ppr False = ptext SLIT("False")
 
 instance Outputable Int where