summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsimonpj <unknown>2004-02-12 14:31:39 +0000
committersimonpj <unknown>2004-02-12 14:31:39 +0000
commit4e4f2add26cad9bf7adcf99e6f90a26a5205fc04 (patch)
treea8727b1c909d9603f71188d26b4191104ec75cde
parent96179bddcb250a1772adc5a86d62c17125637709 (diff)
downloadhaskell-4e4f2add26cad9bf7adcf99e6f90a26a5205fc04.tar.gz
[project @ 2004-02-12 14:31:39 by simonpj]
Layout only
-rw-r--r--ghc/compiler/types/InstEnv.lhs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/compiler/types/InstEnv.lhs b/ghc/compiler/types/InstEnv.lhs
index c197c05bf5..cc7549247e 100644
--- a/ghc/compiler/types/InstEnv.lhs
+++ b/ghc/compiler/types/InstEnv.lhs
@@ -314,7 +314,7 @@ insert_overlapping new_item (item:items)
-- Keep new one
| old_beats_new = item : items
-- Keep old one
- | otherwise = item : insert_overlapping new_item items
+ | otherwise = item : insert_overlapping new_item items
-- Keep both
where
new_beats_old = new_item `beats` item