From c73c3891abaa5ed50d897e82ee9291054a5c9a0b Mon Sep 17 00:00:00 2001 From: simonmar Date: Mon, 29 Nov 2004 11:35:43 +0000 Subject: [PATCH] [project @ 2004-11-29 11:35:43 by simonmar] Don't quote package names --- ghc/compiler/iface/LoadIface.lhs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/compiler/iface/LoadIface.lhs b/ghc/compiler/iface/LoadIface.lhs index 69896be..579c09d 100644 --- a/ghc/compiler/iface/LoadIface.lhs +++ b/ghc/compiler/iface/LoadIface.lhs @@ -761,13 +761,13 @@ hiModuleNameMismatchWarn requested_mod read_mod = noIfaceErr dflags mod_name (PackageHidden pkg) = ptext SLIT("Could not import") <+> quotes (ppr mod_name) <> colon - $$ ptext SLIT("it is a member of package") <+> quotes (ppr pkg) <> comma + $$ ptext SLIT("it is a member of package") <+> ppr pkg <> comma <+> ptext SLIT("which is hidden") noIfaceErr dflags mod_name (ModuleHidden pkg) = ptext SLIT("Could not import") <+> quotes (ppr mod_name) <> colon $$ ptext SLIT("it is hidden") - <+> parens (ptext SLIT("in package") <+> quotes (ppr pkg)) + <+> parens (ptext SLIT("in package") <+> ppr pkg) noIfaceErr dflags mod_name (NotFound files) = ptext SLIT("Could not find interface file for") <+> quotes (ppr mod_name) -- 1.7.10.4