summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorSimon Marlow <simonmar@microsoft.com>2006-07-26 10:35:26 +0000
committerSimon Marlow <simonmar@microsoft.com>2006-07-26 10:35:26 +0000
commit5e6ccfbf21308edd6ff17a76ae981229ea3d12fd (patch)
treee95884d61f6809acf04d063e3cdc748382c99bb3 /compiler
parent472bbd6cf5bef4398a851a720f32084cdd85d974 (diff)
downloadhaskell-5e6ccfbf21308edd6ff17a76ae981229ea3d12fd.tar.gz
fix parse error (merge-o, I think)
Diffstat (limited to 'compiler')
-rw-r--r--compiler/ghci/Linker.lhs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/ghci/Linker.lhs b/compiler/ghci/Linker.lhs
index 26f40ebbe4..15117fe0b4 100644
--- a/compiler/ghci/Linker.lhs
+++ b/compiler/ghci/Linker.lhs
@@ -468,8 +468,8 @@ getLinkDeps hsc_env hpt pit maybe_normal_osuf span mods
case mb_stuff of
Found loc mod -> found loc mod
_ -> no_obj mod_name
-
- found loc mod = do {
+ where
+ found loc mod = do {
-- ...and then find the linkable for it
mb_lnk <- findObjectLinkableMaybe mod loc ;
case mb_lnk of {