From a89cd8f7e6d851e4ba98a6312f28bcf0adbcad03 Mon Sep 17 00:00:00 2001 From: simonm Date: Mon, 23 Feb 1998 16:49:38 +0000 Subject: [PATCH] [project @ 1998-02-23 16:49:38 by simonm] add missing 'True' case to instance Outputable Bool. --- ghc/compiler/utils/Outputable.lhs | 1 + 1 file changed, 1 insertion(+) diff --git a/ghc/compiler/utils/Outputable.lhs b/ghc/compiler/utils/Outputable.lhs index e09d59d..c34404b 100644 --- a/ghc/compiler/utils/Outputable.lhs +++ b/ghc/compiler/utils/Outputable.lhs @@ -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 -- 1.7.10.4