From 11b6abfbdab0ca88d1252e81988c04919edc24b4 Mon Sep 17 00:00:00 2001 From: simonmar Date: Thu, 26 Oct 2000 10:27:32 +0000 Subject: [PATCH] [project @ 2000-10-26 10:27:32 by simonmar] Fix up --- ghc/compiler/ghci/CmLink.lhs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/compiler/ghci/CmLink.lhs b/ghc/compiler/ghci/CmLink.lhs index 953f3be..de465b3 100644 --- a/ghc/compiler/ghci/CmLink.lhs +++ b/ghc/compiler/ghci/CmLink.lhs @@ -59,7 +59,7 @@ instance Outputable Unlinked where ppr (DotO path) = text "DotO" <+> text path ppr (DotA path) = text "DotA" <+> text path ppr (DotDLL path) = text "DotDLL" <+> text path - ppr (Trees binds) = text "Trees" <+> ppr (map binder binds) + ppr (Trees binds _) = text "Trees" <+> ppr (map binder binds) isObject (DotO _) = True @@ -67,7 +67,7 @@ isObject (DotA _) = True isObject (DotDLL _) = True isObject _ = False -isInterpretable (Trees _) = True +isInterpretable (Trees _ _) = True isInterpretable _ = False data Linkable -- 1.7.10.4