From 16873c648965fb122d9525823f86662bfc3f3d77 Mon Sep 17 00:00:00 2001 From: simonmar Date: Tue, 23 May 2000 15:59:25 +0000 Subject: [PATCH] [project @ 2000-05-23 15:59:25 by simonmar] Don't use commas in an SLIT("..") --- ghc/compiler/rename/RnEnv.lhs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc/compiler/rename/RnEnv.lhs b/ghc/compiler/rename/RnEnv.lhs index 8c81f2e..a87d73c 100644 --- a/ghc/compiler/rename/RnEnv.lhs +++ b/ghc/compiler/rename/RnEnv.lhs @@ -727,7 +727,7 @@ warnUnusedModules mods | otherwise = mapRn_ (addWarnRn . unused_mod) mods where unused_mod m = ptext SLIT("Module") <+> quotes (pprModuleName m) <+> - ptext SLIT("is imported, but nothing from it is used") + text "is imported, but nothing from it is used" warnUnusedLocalBinds, warnUnusedImports, warnUnusedMatches :: [Name] -> RnM d () warnUnusedImports names -- 1.7.10.4