diff options
author | simonmar <unknown> | 2000-05-23 15:59:25 +0000 |
---|---|---|
committer | simonmar <unknown> | 2000-05-23 15:59:25 +0000 |
commit | 16873c648965fb122d9525823f86662bfc3f3d77 (patch) | |
tree | 45d387be6f0f649dfd76f3f63e108a977035767a | |
parent | 42284476781984fb03bd8089cd2e7790a5c29150 (diff) | |
download | haskell-16873c648965fb122d9525823f86662bfc3f3d77.tar.gz |
[project @ 2000-05-23 15:59:25 by simonmar]
Don't use commas in an SLIT("..")
-rw-r--r-- | ghc/compiler/rename/RnEnv.lhs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/compiler/rename/RnEnv.lhs b/ghc/compiler/rename/RnEnv.lhs index 8c81f2e3d1..a87d73c52c 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 |