aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/mono_util.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2018-06-03 15:01:24 -0400
committerGravatar Adam Chlipala <adam@chlipala.net>2018-06-03 15:01:24 -0400
commitf3373fd5809689bece7fd390f2d737aa0b43f594 (patch)
tree739be9eaa093fbf25bc69317811b869775c1ba80 /src/mono_util.sml
parent1c493e9ec47f4754dd7237078e8c4f3300925ce3 (diff)
'filecache' .urp directive, fixing a longstanding MonoUtil bug in the process
Diffstat (limited to 'src/mono_util.sml')
-rw-r--r--src/mono_util.sml6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mono_util.sml b/src/mono_util.sml
index fc1a2bcb..fdf48d20 100644
--- a/src/mono_util.sml
+++ b/src/mono_util.sml
@@ -107,16 +107,16 @@ fun mapfold fc =
| TOption t =>
S.map2 (mft t,
fn t' =>
- (TOption t, loc))
+ (TOption t', loc))
| TList t =>
S.map2 (mft t,
fn t' =>
- (TList t, loc))
+ (TList t', loc))
| TSource => S.return2 cAll
| TSignal t =>
S.map2 (mft t,
fn t' =>
- (TSignal t, loc))
+ (TSignal t', loc))
in
mft
end