From feee9bb8151fd592df9ad4d10fc2e418b26f3e2c Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Wed, 9 May 2007 10:34:35 +0000 Subject: [PATCH] Fix a missing prime spotted by -fwarn-unused-binds --- compiler/ghci/Linker.lhs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/ghci/Linker.lhs b/compiler/ghci/Linker.lhs index 7b40c32..220ac3b 100644 --- a/compiler/ghci/Linker.lhs +++ b/compiler/ghci/Linker.lhs @@ -559,7 +559,7 @@ getLinkDeps hsc_env hpt pit maybe_normal_osuf span mods | mi_boot iface = link_boot_mod_error mod | otherwise - = follow_deps (map (mkModule this_pkg) boot_deps ++ mods) acc_mods' acc_pkgs' + = follow_deps (map (mkModule this_pkg) boot_deps' ++ mods) acc_mods' acc_pkgs' where pkg = modulePackageId mod iface = get_iface mod -- 1.7.10.4