aboutsummaryrefslogtreecommitdiff
path: root/frontend/utilities.icl
diff options
context:
space:
mode:
authorjohnvg2002-06-17 11:29:50 +0000
committerjohnvg2002-06-17 11:29:50 +0000
commit2503354503ecdd697bb1dbea7c9fb8fee3f77ae6 (patch)
tree3abf7a922862ca12c2c78a3fc03220290f8e9549 /frontend/utilities.icl
parentremoved hello and bye, replace testArgs by [] (diff)
removed ingnored !'s
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@1097 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'frontend/utilities.icl')
-rw-r--r--frontend/utilities.icl2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/utilities.icl b/frontend/utilities.icl
index 48a5012..efcd741 100644
--- a/frontend/utilities.icl
+++ b/frontend/utilities.icl
@@ -113,7 +113,7 @@ mapAppend f [] tail
= tail
-mapAppendSt :: !(.a -> .(.b -> (.c,.b))) ![.a] !u:[.c] !.b -> !(!u:[.c],!.b)
+mapAppendSt :: !(.a -> .(.b -> (.c,.b))) ![.a] !u:[.c] !.b -> (!u:[.c],!.b)
mapAppendSt f [x : xs] tail s
# (x, s) = f x s
(xs, s) = mapAppendSt f xs tail s