summaryrefslogtreecommitdiff
path: root/src/GF/Data/Operations.hs
diff options
context:
space:
mode:
authorpeb <unknown>2005-02-03 14:13:35 +0000
committerpeb <unknown>2005-02-03 14:13:35 +0000
commit4a5a48157fc85f7bb4deaf446140b1178a666f24 (patch)
tree077a81d46fa364559e6b6c1531057aff9b9517fa /src/GF/Data/Operations.hs
parenta7b25a9ca45c7ab7e4c64823698541122a0c865d (diff)
"Committed_by_peb"
Diffstat (limited to 'src/GF/Data/Operations.hs')
-rw-r--r--src/GF/Data/Operations.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GF/Data/Operations.hs b/src/GF/Data/Operations.hs
index 024318594..003f1746f 100644
--- a/src/GF/Data/Operations.hs
+++ b/src/GF/Data/Operations.hs
@@ -512,7 +512,7 @@ topoSort g = reverse $ tsort 0 [ffs | ffs@(f,_) <- g, inDeg f == 0] [] where
-- the generic fix point iterator
-iterFix :: Eq a => ([a] -> [a]) -> [a] -> [a]
+iterFix :: Eq a => ([a] -> [a]) -> [a] -> [a]
iterFix more start = iter start start
where
iter old new = if (null new')